Spread Windows Forms 12.0 Product Documentation
GetInputMapWhenShapeHasFocus Method (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : GetInputMapWhenShapeHasFocus Method
Gets the input map for the view for when a shape has focus.
Syntax
'Declaration
 
Public Overridable Function GetInputMapWhenShapeHasFocus() As InputMap
'Usage
 
Dim instance As SpreadView
Dim value As InputMap
 
value = instance.GetInputMapWhenShapeHasFocus()
public virtual InputMap GetInputMapWhenShapeHasFocus()

Return Value

InputMap object containing the input map
Example
This example uses the GetInputMapWhenShapeHasFocus method.
FarPoint.Win.Spread.InputMap im; 
im = fpSpread1.GetRootWorkbook.GetInputMapWhenShapeHasFocus(); 
FarPoint.Win.Spread.Keystroke k = new FarPoint.Win.Spread.Keystroke(Keys.Down, Keys.None); 
im.Put(k, FarPoint.Win.Spread.SpreadActions.MoveShapeDown); 
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.Down, Keys.None)
im.Put(k, FarPoint.Win.Spread.SpreadActions.MoveShapeDown)
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)
See Also

Reference

SpreadView Class
SpreadView Members
InputMap Class

User-Task Documentation

Managing Keyboard Interaction