RichTextBox.Paste(DataFormats+Format) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Fügt den Inhalt der Zwischenablage in das angegebene Zwischenablageformat ein.
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)
Parameter
- clipFormat
- DataFormats.Format
Das Zwischenablageformat, in dem die Daten aus der Zwischenablage abgerufen werden sollen.
Beispiele
Im folgenden Codebeispiel wird veranschaulicht, wie Sie die Paste -Methode verwenden, um eine Bitmap in das RichTextBox Steuerelement einzufügen. Nachdem Sie eine Bitmap aus einer Datei geöffnet haben, wird im Beispiel die SetDataObject -Methode verwendet, um die Bitmap in die Windows-Zwischenablage zu kopieren. Schließlich ruft das Beispiel das Format für das Bitmap -Objekt ab, überprüft, ob das Format in das RichTextBox Steuerelement eingefügt werden kann, und verwendet die Paste -Methode, um die Daten einzufügen.
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
Hinweise
Mit dieser Methode können Sie Daten aus der Zwischenablage in das Steuerelement einfügen. Diese Version der Paste Methode unterscheidet sich von der TextBoxBase.Paste -Methode, da Sie nur Text in ein angegebenes Zwischenablageformat einfügen können. Sie können die CanPaste -Methode verwenden, um zu bestimmen, ob die Daten in der Zwischenablage das angegebene Zwischenablageformat aufweisen. Anschließend können Sie diese Version der Paste Methode aufrufen, um sicherzustellen, dass der Einfügevorgang mit dem entsprechenden Datenformat ausgeführt wird.