Spread Windows Forms 9.0 Product Documentation
MoveShapeUp Field
Example 


Moves the active shape up.
Syntax
'Declaration
 
Public Shared ReadOnly MoveShapeUp As Object
'Usage
 
Dim value As Object
 
value = SpreadActions.MoveShapeUp
public static readonly object MoveShapeUp
Example
This example sets up a map that uses the up arrow key to move the shape up when the shape has focus.
FarPoint.Win.Spread.InputMap im; 
im = fpSpread1.GetRootWorkbook.GetInputMapWhenShapeHasFocus(); 
FarPoint.Win.Spread.Keystroke k = new FarPoint.Win.Spread.Keystroke(Keys.Up, Keys.None); 
im.Put(k, FarPoint.Win.Spread.SpreadActions.MoveShapeUp); 
fpSpread1.GetRootWorkbook.SetInputMapWhenShapeHasFocus(im); 
FarPoint.Win.Spread.DrawingSpace.ArrowShape arrow = new FarPoint.Win.Spread.DrawingSpace.ArrowShape(); 
arrow.Parent = fpSpread1; 
arrow.SetBounds(10, 10, 30, 30); 
fpSpread1.ActiveSheet.AddShape(arrow);
Dim im As FarPoint.Win.Spread.InputMap
im = FpSpread1.GetRootWorkbook.GetInputMapWhenShapeHasFocus()
Dim k As New FarPoint.Win.Spread.Keystroke(Keys.Up, Keys.None)
im.Put(k, FarPoint.Win.Spread.SpreadActions.MoveShapeUp)
FpSpread1.GetRootWorkbook.SetInputMapWhenShapeHasFocus(im)

Dim arrow As New FarPoint.Win.Spread.DrawingSpace.ArrowShape
arrow.Parent = FpSpread1
arrow.SetBounds(10, 10, 30, 30)
FpSpread1.ActiveSheet.AddShape(arrow)
Remarks

This action, when a shape has focus, moves a shape upward.

The default key combination assigned to this action, when the shape has focus, is the Up arrow key.

You can use this action along with a custom key combination by defining your own input or action map. For more information about maps, see Managing Keyboard Interactions.

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SpreadActions Class
SpreadActions Members

User-Task Documentation

Using Shapes

 

 


Copyright © GrapeCity, inc. All rights reserved.