DataFormats.UnicodeText Feld
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.
Gibt das standardmäßige Unicode-Textformat von Windows an. Dieses static
-Feld ist schreibgeschützt.
public: static initonly System::String ^ UnicodeText;
public static readonly string UnicodeText;
staticval mutable UnicodeText : string
Public Shared ReadOnly UnicodeText As String
Feldwert
Beispiele
Im folgenden Codebeispiel wird die Verwendung dieses Members veranschaulicht.
try
{
String^ myString = "This is a String from the ClipBoard";
// Sets the data into the Clipboard.
Clipboard::SetDataObject( myString );
IDataObject^ myDataObject = Clipboard::GetDataObject();
// Checks whether the format of the data is 'UnicodeText' or not.
if ( myDataObject->GetDataPresent( DataFormats::UnicodeText ) )
{
Console::WriteLine( "Data in 'UnicodeText' format: " +
myDataObject->GetData( DataFormats::UnicodeText ) );
}
else
{
Console::WriteLine( "No String information was contained in the clipboard." );
}
// Checks whether the format of the data is 'Text' or not.
if ( myDataObject->GetDataPresent( DataFormats::Text ) )
{
String^ clipString = (String^)(myDataObject->GetData( DataFormats::StringFormat ));
Console::WriteLine( "Data in 'Text' format: {0}", clipString );
}
}
catch ( Exception^ e )
{
Console::WriteLine( e->Message );
}
try
{
String myString = "This is a String from the ClipBoard";
// Sets the data into the Clipboard.
Clipboard.SetDataObject(myString);
IDataObject myDataObject = Clipboard.GetDataObject();
// Checks whether the format of the data is 'UnicodeText' or not.
if(myDataObject.GetDataPresent(DataFormats.UnicodeText))
{
Console.WriteLine("Data in 'UnicodeText' format:"+myDataObject.GetData(DataFormats.UnicodeText));
}
else
{
Console.WriteLine("No String information was contained in the clipboard.");
}
// Checks whether the format of the data is 'Text' or not.
if(myDataObject.GetDataPresent(DataFormats.Text))
{
String clipString = (String)myDataObject.GetData(DataFormats.StringFormat);
Console.WriteLine("Data in 'Text' format:"+clipString);
}
}
catch(Exception e)
{
Console.WriteLine(e.Message);
}
Try
Dim myString As String = "This is a String from the ClipBoard"
' Sets the data into the Clipboard.
Clipboard.SetDataObject(myString)
Dim myDataObject As IDataObject = Clipboard.GetDataObject()
' Checks whether the format of the data is 'UnicodeText' or not.
If myDataObject.GetDataPresent(DataFormats.UnicodeText) Then
Console.WriteLine($"Data in 'UnicodeText' format:{myDataObject.GetData(DataFormats.UnicodeText)}")
Else
Console.WriteLine("No String information was contained in the clipboard.")
End If
' Checks whether the format of the data is 'Text' or not.
If myDataObject.GetDataPresent(DataFormats.Text) Then
Dim clipString As String = CType(myDataObject.GetData(DataFormats.StringFormat), String)
Console.WriteLine($"Data in 'Text' format:{clipString}")
End If
Catch e As Exception
Console.WriteLine(e.Message)
End Try
End Sub
End Class
Hinweise
Dieses Feld wird von der IDataObject Schnittstelle und der DataObject -Klasse verwendet, um den Datentyp anzugeben.
Wenn Sie zu oder IDataObject zu einer Implementierung von DataObjecthinzufügen, verwenden Sie dieses Feld als Format für die IDataObject.SetData Methoden und DataObject.SetData .
Um festzustellen, ob ein Objekt dieses Typs vorhanden ist, verwenden Sie dieses Feld als Format für die IDataObject.GetDataPresent Methoden und DataObject.GetDataPresent .
Um ein Objekt dieses Typs abzurufen, verwenden Sie dieses Format als Format für die IDataObject.GetData Methoden und DataObject.GetData .