RichTextBox.Paste(DataFormats+Format) メソッド

定義

クリップボードの内容を指定したクリップボード形式で貼り付けます。

public:
 void Paste(System::Windows::Forms::DataFormats::Format ^ clipFormat);
public void Paste (System.Windows.Forms.DataFormats.Format clipFormat);
override this.Paste : System.Windows.Forms.DataFormats.Format -> unit
Public Sub Paste (clipFormat As DataFormats.Format)

パラメーター

clipFormat
DataFormats.Format

クリップボードから取得されるデータのクリップボード形式。

次のコード例は、メソッドを使用してビットマップを Paste コントロールに貼り付ける方法を RichTextBox 示しています。 ファイルからビットマップを開いた後、このメソッドをSetDataObject使用してビットマップをWindowsクリップボードにコピーします。 最後に、この例では、オブジェクトの形式を Bitmap 取得し、その形式をコントロールに RichTextBox 貼り付けることができることを確認し、メソッドを Paste 使用してデータを貼り付けます。

private:
   bool pasteMyBitmap( String^ fileName )
   {
      // Open an bitmap from file and copy it to the clipboard.
      Bitmap^ myBitmap = gcnew Bitmap( fileName );

      // Copy the bitmap to the clipboard.
      Clipboard::SetDataObject( myBitmap );

      // Get the format for the object type.
      DataFormats::Format^ myFormat = DataFormats::GetFormat( DataFormats::Bitmap );

      // After verifying that the data can be pasted, paste it.
      if ( richTextBox1->CanPaste( myFormat ) )
      {
         richTextBox1->Paste( myFormat );
         return true;
      }
      else
      {
         MessageBox::Show( "The data format that you attempted to paste is not supported by this control." );
         return false;
      }
   }
private bool pasteMyBitmap(string fileName)
{

    // Open an bitmap from file and copy it to the clipboard.
    Bitmap myBitmap = new Bitmap(fileName);
            
    // Copy the bitmap to the clipboard.
    Clipboard.SetDataObject(myBitmap);

    // Get the format for the object type.
    DataFormats.Format myFormat = DataFormats.GetFormat(DataFormats.Bitmap);

    // After verifying that the data can be pasted, paste it.
    if(richTextBox1.CanPaste(myFormat))
    {
        richTextBox1.Paste(myFormat);
        return true;
    }
    else
    {
        MessageBox.Show("The data format that you attempted to paste is not supported by this control.");
        return false;
    }
}
Private Function PasteMyBitmap(ByVal Filename As String) As Boolean

    'Open an bitmap from file and copy it to the clipboard.
    Dim MyBitmap As Bitmap
    MyBitmap = Bitmap.FromFile(Filename)

    ' Copy the bitmap to the clipboard.
    Clipboard.SetDataObject(MyBitmap)

    ' Get the format for the object type.
    Dim MyFormat As DataFormats.Format = DataFormats.GetFormat(DataFormats.Bitmap)

    ' After verifying that the data can be pasted, paste it.
    If RichTextBox1.CanPaste(MyFormat) Then

        RichTextBox1.Paste(MyFormat)
        PasteMyBitmap = True

    Else

        MessageBox.Show("The data format that you attempted to paste is not supported by this control.")
        PasteMyBitmap = False

    End If


End Function

注釈

このメソッドを使用して、クリップボードのデータをコントロールに貼り付けることができます。 このバージョンの Paste メソッドは、指定したクリップボード形式の TextBoxBase.Paste テキストのみを貼り付けできるため、メソッドとは異なります。 このメソッドを CanPaste 使用して、クリップボード内のデータが指定されたクリップボード形式であるかどうかを判断できます。 その後、このバージョンのメソッドを Paste 呼び出して、適切なデータ形式で貼り付け操作が行われるようにすることができます。

適用対象

こちらもご覧ください