NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ToolTip.SetToolTip

Associates ToolTip text with the specified control.

[Visual Basic]
Public Sub SetToolTip( _
   ByVal control As Control, _
   ByVal caption As String _
)
[C#]
public void SetToolTip(
   Control control,
   string caption
);
[C++]
public: void SetToolTip(
   Control* control,
   String* caption
);
[JScript]
public function SetToolTip(
   control : Control,
   caption : String
);

Parameters

control
The Control to associate the tooltip text with.
caption
The text to display.

See Also

ToolTip Class | ToolTip Members | System.WinForms Namespace | GetToolTip