Rotates the active shape one degree counter-clockwise.
Syntax
Visual Basic (Declaration) | |
---|
Public Shared ReadOnly RotateShapeCounterClockwise As Object |
Visual Basic (Usage) | Copy Code |
---|
Dim value As Object
value = SpreadActions.RotateShapeCounterClockwise |
C# | |
---|
public static readonly object RotateShapeCounterClockwise |
Remarks
Example
This example sets up a map that uses the R key to rotate the shape if it has the focus.
C# | Copy Code |
---|
FarPoint.Win.Spread.DrawingSpace.ArrowShape arrow = new FarPoint.Win.Spread.DrawingSpace.ArrowShape();
arrow.Parent = fpSpread1;
arrow.SetBounds(10, 10, 50, 50);
fpSpread1.ActiveSheet.AddShape(arrow);
FarPoint.Win.Spread.DrawingSpace.ArrowShape crv = new FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape();
crv.Parent = fpSpread1;
crv.SetBounds(10, 10, 50, 50);
fpSpread1.ActiveSheet.AddShape(crv);
FarPoint.Win.Spread.InputMap im;
im = fpSpread1.GetInputMapWhenShapeHasFocus();
FarPoint.Win.Spread.Keystroke k = new FarPoint.Win.Spread.Keystroke(Keys.R, Keys.None);
im.Put(k, FarPoint.Win.Spread.SpreadActions.RotateShapeCounterClockwise);
fpSpread1.SetInputMapWhenShapeHasFocus(im);
|
Visual Basic | Copy Code |
---|
Dim arrow As New FarPoint.Win.Spread.DrawingSpace.ArrowShape
arrow.Parent = FpSpread1
arrow.SetBounds(10, 10, 50, 50)
FpSpread1.ActiveSheet.AddShape(arrow)
Dim crv As New FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape
crv.Parent = FpSpread1
crv.SetBounds(70, 10, 50, 50)
FpSpread1.ActiveSheet.AddShape(crv)
Dim im As FarPoint.Win.Spread.InputMap
im = FpSpread1.GetInputMapWhenShapeHasFocus()
Dim k As New FarPoint.Win.Spread.Keystroke(Keys.R, Keys.None)
im.Put(k, FarPoint.Win.Spread.SpreadActions.RotateShapeCounterClockwise)
FpSpread1.SetInputMapWhenShapeHasFocus(im) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also