Pointer DataWindow object property
Description
The image to be used for the mouse pointer when the pointer
is over the specified control. If you specify a pointer for the
whole DataWindow, the DataWindow server uses that pointer except when the pointer
is over a control that also has a Pointer setting.
Controls
DataWindow, Button, Column, Computed Field, Graph, GroupBox,
Line, OLE, Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob,
and Text controls
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>controlname</span>.Pointer |
Describe and Modify argument:
1 |
"<span>controlname</span>.Pointer { = ' <span>pointername </span>' }" |
Parameter |
Description |
---|---|
controlname |
The name of the control in the DataWindow |
pointername |
(exp) A string specifying |
Usage
In the painter
Select the control and set the value in the Properties view, Pointer
tab.
Examples
1 |
setting = dw1.Object.graph_1.Pointer |
1 |
dw1.Object.graph_1.Pointer = 'Cross!' |
1 |
setting = dw1.Describe("graph_1.Pointer") |
1 |
dw1.Modify("graph_1.Pointer = 'Cross!'") |
1 |
dw1.Modify("graph_1.Pointer = 'c:pb040mycurs.cur'") |