Property SLScope.TSLDataDisplay.CanRedoZoom
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLDataDisplay
Contents |
Syntax
Delphi:
property CanRedoZoom : Boolean read GetCanRedoZoom;
C++ Builder:
__property bool CanRedoZoom = { read=GetCanRedoZoom };
Summary
Can Redo the Zoom.
Description
\Returns True if ZoomRedo operation is available.
Delphi example:
AValue : Boolean; AValue := SLScope1.CanRedoZoom;
C++ Builder example:
bool AValue = SLScope1->CanRedoZoom;
Visual C++(MFC/Win32) example:
bool AValue = SLScope1.CanRedoZoom;
C# example:
bool value = scope1.CanRedoZoom;