Attributes

Description

A tab-separated list of all the properties that apply to a control.

Applies to

DataWindow, Button, Column, Computed Field, Graph, GroupBox, Line, OLE, Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text controls

Syntax

Describe argument:

"controlname.Attributes"

Examples

Example 1

[Visual Basic]
Dim AttrStr as String
AttrStr = dw1.GetProperty("EmpNameText.Attributes")
AttrStr = dw1.Describe("DataWindow.Attributes")
AttrStr = dw1.Describe("EmpNameText.Attributes")

Example 2

[C#]
string AttrStr;
AttrStr = dw1.GetProperty("EmpNameText.Attributes");
AttrStr = dw1.Describe("DataWindow.Attributes");
AttrStr = dw1.Describe("EmpNameText.Attributes");