Spread Windows Forms 11.0 Product Documentation
ClipboardPasteAsStringSkipHidden Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadActions Class : ClipboardPasteAsStringSkipHidden Field
Pastes only the text from the Clipboard to the current cell, skipping hidden rows and columns.
Syntax
'Declaration
 
Public Shared ReadOnly ClipboardPasteAsStringSkipHidden As Object
'Usage
 
Dim value As Object
 
value = SpreadActions.ClipboardPasteAsStringSkipHidden
public static readonly object ClipboardPasteAsStringSkipHidden
Example
This example uses the ClipboardPasteAsStringSkipHidden 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.ClipboardPasteAsStringSkipHidden);
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.ClipboardPasteAsStringSkipHidden)
See Also

Reference

SpreadActions Class
SpreadActions Members