Get a MUI Value via Tag as String
Source position: MUIClass.Base.pas line 75
protected function TMUIRootClass.GetStringValue( |
Tag: LongWord |
):string; virtual; |
Tag |
|
Field to get as Tag |
Contents of the Field defined by Tag or an empty string if Object is not created.
Get a Field Value via Tag as string Value from the internal MUI Object. If internal MUI object not created it will return a empty string (''). Would be a good idea to test HasObj before to make sure the object exists.
Example:
Text := ''; // when no object is there if HasObj then Text := GetStringValue(MUIA_String_Contents); // Get intuition window structure
|
The MUI Object if created |
|
|
Is the MUI Object created and can be used |
|
|
Set a MUI object Value via Tag |
|
|
Get a MUI Value via Tag as Integer |
|
|
Get a MUI Value via Tag as Boolean |
|
|
Get a MUI Value via Tag as Pointer |
|
|
Get a MUI Value via Tag as String |