Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / ClipboardOptions Enumeration
Example Example


In This Topic
    ClipboardOptions Enumeration
    In This Topic
    Specifies which headers are included when data is copied to or pasted from the Clipboard.
    Syntax
    'Declaration
     
    Public Enum ClipboardOptions 
       Inherits System.Enum
    'Usage
     
    Dim instance As ClipboardOptions
    public enum ClipboardOptions : System.Enum 
    Members
    MemberDescription
    AllHeaders [3] Includes selected headers when data is copied; overwrites selected headers when data is pasted
    AllHeadersAndFilterBar [7] Includes selected headers and filter bars when data is copied; overwrites selected headers and filter bars when data is pasted
    ColumnHeaders [2] Includes selected column headers when data is copied; overwrites selected column headers when data is pasted
    FilterBar [4] Includes selected filter bars when data is copied; overwrites selected filter bars when data is pasted
    NoHeaders [0] Includes neither column nor row headers when data is copied; does not overwrite selected column or row headers when data is pasted
    RowHeaders [1] Includes selected row headers when data is copied; overwrites selected row headers when data is pasted
    Example
    FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
    FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
    fpSpread1.Location = new Point(10, 10);
    fpSpread1.Height = 200;
    fpSpread1.Width = 400;
    Controls.Add(fpSpread1);
    fpSpread1.Sheets.Add(shv);
    fpSpread1.ClipboardOptions = FarPoint.Win.Spread.ClipboardOptions.NoHeaders;
    Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
    Dim shv As New FarPoint.Win.Spread.SheetView()
    fpSpread1.Location = New Point(10, 10)
    fpSpread1.Height = 200
    fpSpread1.Width = 400
    Controls.Add(fpSpread1)
    fpSpread1.Sheets.Add(shv)
    fpSpread1.ClipboardOptions = FarPoint.Win.Spread.ClipboardOptions.NoHeaders
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             FarPoint.Win.Spread.ClipboardOptions

    See Also