C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1AppView Namespace / C1AppView Class / DataTextField Property
Example

In This Topic
DataTextField Property (C1AppView)
In This Topic
Gets or sets the field in the data source from which to load text values.
Syntax
'Declaration
 
Public Property DataTextField As System.String
 
Example
C1AppView c = new C1AppView();
c.DataSource = data;
c.DataTextField = "textField";
c.AppViewPageUrlField = "valueField";
c.DataBind();
See Also