Concept Framework 2.2 documentation Contents | Index

RADOView.FieldsText

Name Type Access Version Deprecated
FieldsText property public version 1.0 no

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).

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"];

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

Documented by Eduard Suica, generation time: Sun Jan 27 18:15:13 2013 GMT(c)2013 Devronium Applications