WorkflowView.ShowInfoTip Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Displays the InfoTip for the WorkflowView.
Overloads
ShowInfoTip(String) |
Shows the InfoTip for the WorkflowView with the specified text. |
ShowInfoTip(String, String) |
Shows the InfoTip for the WorkflowView with the specified title and text. |
Remarks
Displays the InfoTip for the WorkflowView.
ShowInfoTip(String)
Shows the InfoTip for the WorkflowView with the specified text.
public:
void ShowInfoTip(System::String ^ text);
public void ShowInfoTip (string text);
member this.ShowInfoTip : string -> unit
Public Sub ShowInfoTip (text As String)
Parameters
- text
- String
The text to display on the InfoTip.
Exceptions
infoTipText
is a null reference (Nothing
in Visual Basic).
Remarks
Shows the InfoTip for the WorkflowView with the specified text.
Applies to
ShowInfoTip(String, String)
Shows the InfoTip for the WorkflowView with the specified title and text.
public:
void ShowInfoTip(System::String ^ title, System::String ^ text);
public void ShowInfoTip (string title, string text);
member this.ShowInfoTip : string * string -> unit
Public Sub ShowInfoTip (title As String, text As String)
Parameters
- title
- String
The title of the InfoTip to display.
- text
- String
The text of the InfoTip to display.
Exceptions
title
is a null reference (Nothing
in Visual Basic).
-or-
infoTipText
is a null reference (Nothing
).
Remarks
Shows the InfoTip for the WorkflowView with the specified title and text.