"refName";
Returns the reference information for a shape meaning to what reference a shape belongs to.
Synopsis
this.refName();
Parameters
Parameter | Description |
---|---|
- |
Description
Returns the reference information for a shape meaning to which reference a shape belongs to, for example, a panel with the reference:
Ref1
+ "PushButton"
"PushButton" returns "Ref1".
New panel where the above panel is included as a reference is:
Ref2
+Ref1
+"PushButton"
"PushButton" returns "Ref1".
Example
main()
{
DebugN(this.refName());
}