DK11 for Delphi | GisViewer.TGIS_Viewer.RotationAngle | Constructors | Fields | Methods | Properties | Events | Events
Angle of viewer rotation in radians.
// Delphi public property RotationAngle : Double read write;
// C++ Builder public: __property double RotationAngle = {read, write};
Type |
---|
Double |
procedure MyForm.GIS_SpinEdit1Change(Sender: TObject); begin // calculate the angle for set value GIS.RotationAngle := DegToRad( GIS_SpinEdit1.Value ) ; GIS.Update ; end ;