Spread Windows Forms 6.0 Product Documentation
ClipboardOptions Enumeration
Example  See Also  Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : ClipboardOptions Enumeration


Glossary Item Box

Specifies which headers are included when data is copied to or pasted from the Clipboard.

Syntax

Visual Basic (Declaration) 
Public Enum ClipboardOptions 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As ClipboardOptions
C# 
public enum ClipboardOptions : System.Enum 

Members

MemberDescription
AllHeaders[3] Includes selected headers when data is copied; overwrites selected headers when data is pasted
ColumnHeaders[2] Includes selected column headers when data is copied; overwrites selected column headers 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

C#Copy Code
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;
Visual BasicCopy Code
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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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