This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Gets or sets the field names for the underlying datatable.
When specifying field names, you can use this.field(name) to retrieve column values in the rowformat parameter.
Otherwise, you'll have to field values by index.
Also, field names must be specified to be able to use the SortColumn parameter.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[("Type", typeof())]
[("PrimaryKey", typeof(bool))]
[(DefaultNotation = .Parameter)]
public virtual <string> FieldNames { get; set; }
Visual Basic (Declaration)Copy imageCopy Code
<("Type", GetType())> _
<("PrimaryKey", GetType())> _
<(DefaultNotation := .Parameter)> _
Public Overridable Property FieldNames As (Of )
	Get
	Set

Field Value

The field names.

See Also

Advanced