
This method will force the display of the tool tip of the control, using the current settings.
The recommended convention is passing the control identifier directly, with an optional 2d point:
Copy Code |
|---|
(Odcl_Control_ShowToolTip MyControlReference [as Reference] [Optional] Coordinate [as Point2D]) |
The X and Y coordinates are optional:
Copy Code |
|---|
(Odcl_Control_ShowToolTip MyControlReference [as Reference] [Optional] X [as Integer] [Optional] Y [as Integer]) |
An alternative convention is to identify the control by providing the project file, the dialog name and the control name:
Copy Code |
|---|
(Odcl_Control_ShowToolTip ProjectFile [as String] DialogName [as String] ControlName [as String]) |
The X and Y coordinates are optional:
Copy Code |
|---|
(Odcl_Control_ShowToolTip ProjectFile [as String] DialogName [as String] ControlName [as String] X [as Integer] Y [as Integer]) |
It is also possible to pass a 2d point:
Copy Code |
|---|
(Odcl_Control_ShowToolTip ProjectFile [as String] DialogName [as String] ControlName [as String] Coordinate [as Point2D]) |
ActiveX, AngleSlider, Animation, BlockList, BlockView, CheckBox, ComboBox, DwgList, DwgPreview, EditableGrid, Frame, GraphicButton, Grid (Hatch), HtmlControl, ImageCombo, Label, ListBox, ListView, MonthPicker, Option, OptionList, PictureBox, ProgressBar, Rectangle, ScrollBar, SliderBar, SlideView, SpinButton, Splitter, TabControl, TextBox, TextButton, TreeControl, UrlLink.
Copy Code |
|---|
; Show the tooltip (Odcl_Control_ShowToolTip MyProject_MyForm_MyControl) |