PowerTools SPREAD for Windows Forms 8.0J
ClipboardPasteOptions 列挙体


クリップボードから貼り付けるデータの種類を表します。
構文
'Declaration
 
Public Enum ClipboardPasteOptions 
   Inherits System.Enum
'使用法
 
Dim instance As ClipboardPasteOptions
public enum ClipboardPasteOptions : System.Enum 
メンバ
メンバ説明
All[0]値、書式、数式を含むすべてのデータオブジェクトを貼り付けます。
AsLink[4]元のセルへのリンクとして貼り付けます。
AsString[5]テキスト文字列として貼り付けます。
AsStringSkipHidden[6] テキスト文字列として貼り付け、非表示セルをスキップします。
Formatting[2]書式のみを貼り付けます。
Formulas[3]数式のみを貼り付けます。
Shape[7] シェイプのみを貼り付けます。
Values[1]値のみを貼り付けます。
Random r = new Random();
int i, j;
DialogResult dlg;
for (i = 0; i <= 3; i++)
{
    for (j = 0; j <= 3; j++)
    {
        fpSpread1.ActiveSheet.SetValue(i, j, r.Next() -100000);
    }
}
dlg = MessageBox.Show("Do you want to copy the data to the clipboard?", "ClipboardCopy", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
    fpSpread1.ActiveSheet.AddSelection(0, 0, 3, 3);
    fpSpread1.ActiveSheet.ClipboardCopy();
}
dlg = MessageBox.Show("Do you want to paste the data from the clipboard? If yes, let's clear the data first.", "Clear", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
    fpSpread1.ActiveSheet.Cells[0, 0, 5, 5].Text = "";
}
dlg = MessageBox.Show("Now we're ready to paste!!", "ClipboardPaste", MessageBoxButtons.YesNo);
if (dlg == DialogResult.Yes)
{
    fpSpread1.ActiveSheet.ClipboardPaste();
}
Dim r As New Random()
Dim i, j As Integer
Dim dlg As DialogResult
For i = 0 To 3
    For j = 0 To 3
        FpSpread1.ActiveSheet.SetValue(i, j, r.Next - 100000.ToString())
    Next j
Next i
dlg = MessageBox.Show("Do you want to copy the data to the clipboard?", "ClipboardCopy", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
    FpSpread1.ActiveSheet.AddSelection(0, 0, 3, 3)
    FpSpread1.ActiveSheet.ClipboardCopy()
End If
dlg = MessageBox.Show("Do you want to paste the data from the clipboard? If yes, let's clear the data first.", "Clear", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
    FpSpread1.ActiveSheet.Cells(0, 0, 5, 5).Text = ""
End If
dlg = MessageBox.Show("Now we're ready to paste!!", "ClipboardPaste", MessageBoxButtons.YesNo)
If dlg = DialogResult.Yes Then
    FpSpread1.ActiveSheet.ClipboardPaste()
End If
継承階層

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

参照

FarPoint.Win.Spread 名前空間
ClipboardPaste メソッド (SheetView クラス)
ClipboardPaste フィールド (SpreadActions クラス)

開発者ガイド

クリップボード機能

 

 


© 2004-2015, GrapeCity inc. All rights reserved.