ObjectList.TableFields Property

Definition

Gets or sets which fields are visible when the list view is shown in table mode. The default value is an empty string (""). This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 property System::String ^ TableFields { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string TableFields { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.TableFields : string with get, set
Public Property TableFields As String

Property Value

A semicolon-delimited list of fields to be displayed when the list view is shown in table mode.

Attributes

Examples

For a complete code sample, see the example for the ObjectList overview.

Remarks

This string must be a set of identifiers, separated by semicolons. Each identifier indicates the name or data field of the field that will be displayed. By default, the list view is never shown in table mode unless this property is not empty.

Applies to

See also