TiStripChart.ToolBarMode

TiStripChart See Also

Specifies the current toolbar active mode.

type

TiStripChartMode = (iscmPlot, iscmScrollX, iscmScrollY, iscmScrollXY, iscmCursor, iscmZoomX, iscmZoomY, iscmZoomXY, iscmZoomBox);

property ToolBarMode : TiStripChartMode;

Description

Use ToolBarMode to set or get the current toolbar mode.

These are the possible values:

Value
Meaning
iscmPlot
Plot only, AutoScale and AutoScroll Active.
iscmScrollX
AutoScale and AutoScroll Inactive, user can scroll plot in X-Axis.
iscmScrollY
AutoScale and AutoScroll Inactive, user can scroll plot in Y-Axis.
iscmScrollXY
AutoScale and AutoScroll Inactive, user can scroll plot in XY-Axis.
iscmCursor
AutoScale and AutoScroll Inactive, user can move cursor, change cursor channel.
iscmZoomX
AutoScale and AutoScroll Inactive, user can zoom X-Axis.
iscmZoomY
AutoScale and AutoScroll Inactive, user can zoom Y-Axis.
iscmZoomXY
AutoScale and AutoScroll Inactive, user can zoom XY-Axis.
iscmZoomBox
AutoScale and AutoScroll Inactive, user can drag a box to zoom XY-Axis.

Example

Delphi

iComponent.ToolBarMode := iscmPlot;

C++ Builder

iComponent->ToolBarMode = iscmPlot;

Contents | Index | Previous | Next