A tab-separated list of all the properties that apply to a control.
DataWindow, Button, Column, Computed Field, Graph, GroupBox, Line, OLE, Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text controls
Describe argument:
"controlname.Attributes"
[Visual Basic]
Dim AttrStr as String
AttrStr = dw1.GetProperty("EmpNameText.Attributes")
AttrStr = dw1.Describe("DataWindow.Attributes")
AttrStr = dw1.Describe("EmpNameText.Attributes")
[C#]
string AttrStr;
AttrStr = dw1.GetProperty("EmpNameText.Attributes");
AttrStr = dw1.Describe("DataWindow.Attributes");
AttrStr = dw1.Describe("EmpNameText.Attributes");