Sets and gets a String associated with a RefFrame Object. This field is not used by GPL and is provided for use by application programs.
refframe_object.Text = <string_value>
-or-
...refframe_object.Text
Prerequisites
None
Parameters
None
Remarks
This Text property allows an application programmer to associate an arbitrary String value with a RefFrame object. For example, this can be used to document how the object is employed or to store a description of the object that is subsequently displayed when the object is accessed or written.
Examples
Dim ref1 As New RefFrame ' Create new RefFrame object
ref1.Text = "This is my reference frame"
Console.WriteLine(ref1.Text)
See Also