Get bounded Column name from stiText field
-
- Posts: 2
- Joined: Wed Jan 04, 2017 9:16 am
Get bounded Column name from stiText field
I ama using C# code to find attached column name or Datatype of bounded column with Text Field.
Re: Get bounded Column name from stiText field
Hello.
Sorry, maybe we don't understand you right.
Could you describe your issue more detailed?
Thank you.
Sorry, maybe we don't understand you right.
Could you describe your issue more detailed?
Thank you.
-
- Posts: 2
- Joined: Wed Jan 04, 2017 9:16 am
Re: Get bounded Column name from stiText field
I have dropped Text1 control in report. And bounded column <DataSource>.<ColumnName> of datatype DateTime
Through C# i can see Text1.Text property = {DataSource.ColumnName}
I want to know the datatype of column bounded to Text1. Is there any property to know the datatype of bounded column.
Through C# i can see Text1.Text property = {DataSource.ColumnName}
I want to know the datatype of column bounded to Text1. Is there any property to know the datatype of bounded column.
Re: Get bounded Column name from stiText field
Hello.
You could get the type with the next expression:
Thank you.
You could get the type with the next expression:
Code: Select all
DataSource.ColumnName.GetType()