Show hint

Element that displays the hint window.

PropertyTypeDescription

Text

String

Hint text

Font

String

Font name

Font size

Int32

Font size

Font color

System.Windows.Media.Color

Font color

Border color

System.Windows.Media.Color

Border color

Bold

bool

Bold font

Italic

bool

Italic font

Element color

System.Windows.Media.Color

Element highlight border color

Do speak

Boolean

Speak text

Voice

String

Speaker voice

Volume

Int32

Voice volume

Speed

Int32

Speech speed

Control (Desktop)

LTools.Desktop.Model.DUIControl

Desktop control reference

Control (Browser)

LTools.WebBrowser.Model.IElementInfo

Browser control reference

X

Int32

X coordinate

Y

Int32

Y coordinate

Width

Int32

Tooltip width

Hight

Int32

Tooltip height

Fade

bool

Screen fade

Location

LTools.Office.Model.Assistant.PreferedLocations

Preferred tooltip location

LTools.Desktop.DesktopApp app_d = LTools.Desktop.DesktopApp.Init(wf, null, "Calc*", 10000);
var el = app_d.FindElement("{\"Name\":\"Nine\",\"AutomationID\":\"num9Button\",\"AUIProperties\":[],\"TextSearchMode\":0,\"IsRoot\":false,\"IsQuickSearch\":false}", 10000);

LTools.Office.AssistantApp app = new LTools.Office.AssistantApp();
app.Text = "text";
//Application
app.ShowHint(el, 100, 50);
//Coordinates
app.ShowHint(wf, 100, 150, 100, 50);

Last updated