Gets and sets the help string of the attribute | |
Syntax: | String =
object.HelpString object.HelpString = String |
Description: | The CimClassAttribute.HelpString is a
string containing the value that will be displayed in a tool tip in
the Object dialog box when the user places the cursor over the
field. Examples Dim class As CimClassInstance Set attrib =
class.Attributes.Item("EXISTING_ATTRIBUTE") attrib.HelpString = "This attribute does something
special" |