Spread Windows Forms 12.0 Product Documentation
DecreaseShapeHeight Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadActions Class : DecreaseShapeHeight Field
Decreases the height of the active shape. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly DecreaseShapeHeight As Object
'Usage
 
Dim value As Object
 
value = SpreadActions.DecreaseShapeHeight
public static readonly object DecreaseShapeHeight
Example
This example sets up a map that uses the D key to decrease the height of the shape if it has focus.
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.D, Keys.None); 
im.Put(k, FarPoint.Win.Spread.SpreadActions.DecreaseShapeHeight); 
fpSpread1.SetInputMapWhenShapeHasFocus(im); 
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.D, Keys.None)
im.Put(k, FarPoint.Win.Spread.SpreadActions.DecreaseShapeHeight)
FpSpread1.SetInputMapWhenShapeHasFocus(im)
Remarks

This action, when a shape has focus, shrinks the size of the shape vertically upward, decreasing the height of the shape.

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

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.

See Also

Reference

SpreadActions Class
SpreadActions Members

User-Task Documentation

Using Shapes