Sets and gets a String associated with a Location Object. This field is not used by GPL and is provided for use by application programs.
location_object.Text = <string_value>
-or-
...location_object.Text
Prerequisites
None
Parameters
None
Remarks
This Text property allows an application programmer to associate an arbitrary String value with a Location 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 taught.
Examples
Dim loc1 As New Location ' Create new Cartesian Location
loc1.Text = "This is my location"
Console.WriteLine(loc1.Text)
See Also