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