ShowComponentHelpFor method (WinStudio scripts)

Applies To

  • IWSForm interface

Definition

Opens the context-sensitive help topic associated with the specified component.

Syntax

object .ShowComponentHelpFor( string )

 Part  Description
object Required. A reference to a valid form object.
string Required. The name of a form component for which you want to designate a help topic.

Remarks

This method makes it possible to open a help topic associated with a designated component, even when that component is hidden, disabled, or otherwise not in focus. Used in conjunction with a diagram component, for example, you can associate individual shapes of the diagram component with different help topics, accessible by double-clicking the shapes.

Example

Sub Main()
   ThisForm.ShowComponentHelpFor("FormComp01")
End Sub