DictTable.Label Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the label text for the table.
public:
virtual System::String ^ Label();
public virtual string Label ();
abstract member Label : unit -> string
override this.Label : unit -> string
Public Overridable Function Label () As String
Returns
The label text for the table; an empty string if there is no label text for the table.
Remarks
The following example shows the retrieval of the label text for a table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print(strfmt("Label: %1", dt.label()));
}