LayerGetCursorAttrib

LayerGetCursorAttrib liefert Attribute des Cursors.

nAttrib = LayerGetCursorAttrib(hLayer)

Returnwert

nAttrib ist eine Oder-Kombination der folgenden Werte:

Name

Wert

CURSOR_SHOWTWO

1

CURSOR_SHOWHORZ

2

CURSOR_INTERPOLATION

4

CURSOR_PRINT

8

CURSOR_ENABLECALLBACK

16

CURSOR_ONLYACTIVEDIA

32

CURSOR_ONLYACTIVEDATASET

64

CURSOR_HIDEGRID

128

Parameter

hLayer

hLayer ist die Zugriffsnummer des Diagramms, das mit LayerCreate erzeugt wurde.

nAttrib = LayerGetCursorAttrib(hLayer);
if (nAttrib & CURSOR_SHOWTWO) {
    // Two cursor are displayed
}

id-1052387