Pointer
property (DataWindow object)
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, PowerBuilder uses that pointer except when the pointer is
over a control that also has a Pointer setting.
Applies to
DataWindow, Button, Column, Computed Field, Graph, GroupBox, Line,
OLE, Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob, and
Text controls
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.controlname.Pointer |
Describe and Modify argument:
|
1 |
"controlname.Pointer { = 'pointername ' }" |
|
Parameter |
Description |
|---|---|
|
controlname |
The name of the control in the DataWindow for which |
|
pointername |
(exp) A string specifying a value of the Pointer |
Usage
In the painter
Select the control and set the value in the Properties view,
Pointer tab.
Examples
|
1 2 3 4 5 |
setting = dw1.Object.graph_1.Pointer dw1.Object.graph_1.Pointer = 'Cross!' setting = dw1.Describe("graph_1.Pointer") dw1.Modify("graph_1.Pointer = 'Cross!'") dw1.Modify("graph_1.Pointer = 'c:pb040mycurs.cur'") |