Gets the help type configured for this object. | |
Syntax: | GefHelpTypeEnum = object.HelpType |
Description: | Objects support several different types of
help. This property is set by one of the methods SetHelpNone, SetHelpText, SetHelpTextFile, or SetHelpWinHelp. Example: Sub GefObject_HelpType() Dim oCimObj As Gefobject Set oCimObj = CimGetObject Select Case
oCimObj.HelpType Case
gefHelpNone MsgBox
"The help text is " & _ """" & oCimObj.HelpText & """" Case
gefHelpText MsgBox
"There is help text specified for this object" Case
gefHelpTextFile MsgBox
"The help file is " & _ """" & oCimObj.HelpFile & """" Case
gefHelpWinHelp MsgBox
"The help file is " & _ """" & oCimObj.HelpFile & """" MsgBox
"The help context id expression is " & _ """" & oCimObj.HelpContextIDExpr & """" End Select End Sub |
See Also: | HelpText , HelpFile , HelpContextIDExpr |