UtilDotNetBarShowSuperTooltipInfo Method
Shows a SuperTooltipInfo at the specified location.
Namespace: DevCase.ThirdParty.DotNetBarAssembly: DevCase.net48.ThirdParty.DotNetBar (in DevCase.net48.ThirdParty.DotNetBar.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void ShowSuperTooltipInfo(
SuperTooltip superToolTip,
string headerText = "",
string bodyText = "",
Image bodyImage = null,
string footerText = "",
Image footerImage = null,
eTooltipColor backColor = 18,
Point location = default,
int duration = 2,
bool positionBelowControl = false
)
Public Shared Sub ShowSuperTooltipInfo (
superToolTip As SuperTooltip,
Optional headerText As String = "",
Optional bodyText As String = "",
Optional bodyImage As Image = Nothing,
Optional footerText As String = "",
Optional footerImage As Image = Nothing,
Optional backColor As eTooltipColor = 18,
Optional location As Point = Nothing,
Optional duration As Integer = 2,
Optional positionBelowControl As Boolean = false
)
Dim superToolTip As SuperTooltip
Dim headerText As String
Dim bodyText As String
Dim bodyImage As Image
Dim footerText As String
Dim footerImage As Image
Dim backColor As eTooltipColor
Dim location As Point
Dim duration As Integer
Dim positionBelowControl As Boolean
UtilDotNetBar.ShowSuperTooltipInfo(superToolTip,
headerText, bodyText, bodyImage,
footerText, footerImage, backColor,
location, duration, positionBelowControl)
public:
static void ShowSuperTooltipInfo(
SuperTooltip^ superToolTip,
String^ headerText = L"",
String^ bodyText = L"",
Image^ bodyImage = nullptr,
String^ footerText = L"",
Image^ footerImage = nullptr,
eTooltipColor backColor = 18,
Point location = Point(),
int duration = 2,
bool positionBelowControl = false
)
static member ShowSuperTooltipInfo :
superToolTip : SuperTooltip *
?headerText : string *
?bodyText : string *
?bodyImage : Image *
?footerText : string *
?footerImage : Image *
?backColor : eTooltipColor *
?location : Point *
?duration : int *
?positionBelowControl : bool
(* Defaults:
let _headerText = defaultArg headerText ""
let _bodyText = defaultArg bodyText ""
let _bodyImage = defaultArg bodyImage null
let _footerText = defaultArg footerText ""
let _footerImage = defaultArg footerImage null
let _backColor = defaultArg backColor 18
let _location = defaultArg location new Point()
let _duration = defaultArg duration 2
let _positionBelowControl = defaultArg positionBelowControl false
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- superToolTip SuperTooltip
-
The SuperTooltip control.
- headerText String (Optional)
-
The header text.
- bodyText String (Optional)
-
The body text.
- bodyImage Image (Optional)
-
The body image.
- footerText String (Optional)
-
The footer text.
- footerImage Image (Optional)
-
The footer image.
- backColor eTooltipColor (Optional)
-
The SuperTooltip background color.
- location Point (Optional)
-
The location where to show the SuperTooltip.
- duration Int32 (Optional)
-
The SuperTooltip duration.
- positionBelowControl Boolean (Optional)
-
If set to , the SuperTooltip is shown below the control.
This is a code example.
No code example is currently available or this language may not be supported.
Dim superTooltip1 As New SuperTooltip
ShowSuperTooltipInfo(superTooltip1,
"I'm the Header", "I'm the Body", , "I'm the Footer", ,
eTooltipColor.Blue, MousePosition, 2, False)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.