Spread Windows Forms 7.0 Product Documentation
InputScope Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : InputScope Property


Glossary Item Box

Gets or sets input scope for the Spread.

Syntax

Visual Basic (Declaration) 
Public Property InputScope As InputScopeNameValue
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim value As InputScopeNameValue
 
instance.InputScope = value
 
value = instance.InputScope
C# 
public InputScopeNameValue InputScope {get; set;}

Example

This example sets the InputScope property.
C#Copy Code
private void Form1_Load(object sender, EventArgs e)
 {
   fpSpread1.AutoScrollWhenKeyboardShowing = true;
   fpSpread1.InputScope = FarPoint.Win.InputScopeNameValue.Default;
 }

private void fpSpread1_EditModeOn(object sender, EventArgs e)
 {
   fpSpread1.ShowTouchKeyboard();
 }

private void fpSpread1_EditModeOff(object sender, EventArgs e)
 {
   fpSpread1.HideTouchKeyboard();
 }
VB.NETCopy Code
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    FpSpread1.AutoScrollWhenKeyboardShowing = True
    FpSpread1.InputScope = FarPoint.Win.InputScopeNameValue.Default
End Sub

Private Sub FpSpread1_EditModeOn(sender As Object, e As System.EventArgs) Handles FpSpread1.EditModeOn
     FpSpread1.ShowTouchKeyboard()
End Sub

Private Sub FpSpread1_EditModeOff(sender As Object, e As System.EventArgs) Handles FpSpread1.EditModeOff
     FpSpread1.HideTouchKeyboard()
End Sub

Requirements

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

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.