RADOView.FieldsText


public property FieldsText

Prototype:

Read/Write property FieldsText[=array]

Description:

Sets or gets the "friendly names" to show in the columns header. Friendly names are some aliases for the DataFields that will be used in the data view's header. To reset, set to an empty array. If FieldsText has less elements than DataFields, the first elements that match will be shown, the last ones will be the field names (as if the property wouldn't be set).

Return value:

Returns the user-friendly columns header array. If the array is empty, this property is not set.

Example
	// friendly names: "Person's name" that will be shown in to the header.
	adoview.FieldsText=[" Person's name", "Surname", "Age"];
	// list only the name, surname and age fields.
	adoview.DataFields=["name", "surname", "age"];