A string property in an XML format that allows you to override and customize the common text values displayed in the user interface of the grid.
To use this property, specify a root node value of TextSettings. The TextSetting root node should contain Item child nodes. Each Item child node will contain TextSection, TextItem, and TextValue nodes. The TextItem node will contain the text value displayed in the grid that you would like to override. The TextValue node will contain the new value you would like to show in the grid.
The TextSection should contain one of the following sections found below:
• CommonText
• MessageBoxText
• Tooltip
• Grouping
• ContextMenu/Column
• ContextMenu/Row
• ContextMenu/FilterSuggest
• ContextMenu/Filter
• ContextMenu/Export
• ContextMenu/Paging
Example:
<TextSettings>
<Item>
<TextSection>CommonText</TextSection>
<TextItem>Ready</TextItem>
<TextValue>Waiting for user input</TextValue>
</Item>
</TextSettings>