Spread Windows Forms 12.0 Product Documentation
ScrollToPreviousColumnVisual Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadActions Class : ScrollToPreviousColumnVisual Field
Scrolls left one column. This field is read-only.
Syntax
'Declaration
 
Public Shared ReadOnly ScrollToPreviousColumnVisual As Object
'Usage
 
Dim value As Object
 
value = SpreadActions.ScrollToPreviousColumnVisual
public static readonly object ScrollToPreviousColumnVisual
Example
This example uses the ScrollToPreviousColumnVisual action.
FarPoint.Win.Spread.InputMap im;
im = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused);
im.Put(new FarPoint.Win.Spread.Keystroke(Keys.P, Keys.None), FarPoint.Win.Spread.SpreadActions.ScrollToPreviousColumnVisual);
Dim im As FarPoint.Win.Spread.InputMap
im = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused)
im.Put(New FarPoint.Win.Spread.Keystroke(Keys.P, Keys.None), FarPoint.Win.Spread.SpreadActions.ScrollToPreviousColumnVisual)
Remarks

This action scrolls the display to the previous column to the left by visual layout in the sheet. This action is similar to the ScrollToPreviousColumn action. The difference is in the meaning of Previous. Instead of defining Previous based on cell coordinates (that is, PreviousColumn is ActiveColumn - 1), this action defines Previous based on the left to right visual layout of the columns on the screen (that is, PreviousColumn is column that is visually left of ActiveColumn and NextColumn is column that is visually right of ActiveColumn). With the new actions and bindings, the left key will always move left and the right key will always move right regardless of the control's RightToLeft property setting. The suffix "Visual" (as in MoveToNextColumnVisual) indicates that the action is using a visual ordering (for example, previous column is defined as the column to the left) rather than a logic ordering (for example, previous column index is defined as current column index - 1). The Visual suffix on the names of the new actions indicates that the definition of Previous is based on the left-to-right visual layout of the columns.

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