(Live) BarChart object, (Live) BlockChart object, Bullet object, Checkbox object, CommandButton object, DropDown object, EmbeddedBrowser object, (Live) FunnelChart object, Hyperlink object, HzLine object, Line object, (Live) LineChart object, ListBox object, Picture object, (Live) PieChart object, (Live) RadarChart object, RadioButton object, Rect object, Slider object, Speedometer object, TextBox object, TextLabel object, Thermometer object, TrafficLight object, Vtline object
This property enables you to append the object type after the accessibility text. This property corresponds to the “Include auto-generated descriptive text” field on the Accessibility dialog box. For example if the object is a rectangle, its object type is “Rectangle”. If this property is set to true, the object type is appended after the accessibility text. If this property is set to false, the object type is not appended. For example if the text entered for the AccessiblityText property is “blue border and yellow fill, and the AppendObjectText property is true, the descriptive text in the EPM Workspace shows as “blue border yellow filled Rectangle.” If AppendObjectText is false, the descriptive text in tc is “blue border yellow filled”.
Note that the ObjectText is different for dashboard object types. For example:
command button—command button, which is hard coded and localized
rectangle— “rectangle”,which is hard coded and localized
embedded section object chart— “Chart1” which depends on Object name
Note: | This property can be used in conjunction with the AccessibilityText (Property) , which enables you to enter user-defined 508 text for embedded sections or graphics. |
Read-write, Boolean
This example shows how to capture the accessibility text selected for a rectangle and append the object type in the Console window:
Rect1.AppendObjectText = true; Console.Write( Rect1.AcessibilityText);