Udostępnij za pośrednictwem


DataFormats.StringFormat Pole

Definicja

Określa format klasy ciągów Windows Forms, który Windows Forms używa do przechowywania obiektów ciągów. To static pole jest tylko do odczytu.

public: static initonly System::String ^ StringFormat;
public static readonly string StringFormat;
 staticval mutable StringFormat : string
Public Shared ReadOnly StringFormat As String 

Wartość pola

String

Przykłady

W poniższym przykładzie kodu pokazano użycie tego elementu członkowskiego.

try
{
   String^ myString = "This is a String from the ClipBoard";
   // Sets the data to the Clipboard.   
   Clipboard::SetDataObject( myString );
   IDataObject^ myDataObject = Clipboard::GetDataObject();
   
   // Checks whether the data is present or not in the Clipboard.
   if ( myDataObject->GetDataPresent( DataFormats::StringFormat ) )
   {
      String^ clipString = (String^)(myDataObject->GetData( DataFormats::StringFormat ));
      Console::WriteLine( clipString );
   }
   else
   {
      Console::WriteLine( "No String information was contained in the clipboard." );
   }
}
catch ( Exception^ e ) 
{
   Console::WriteLine( e->Message );
}
try
{
    String myString = "This is a String from the ClipBoard";
    // Sets the data to the Clipboard.   
    Clipboard.SetDataObject(myString);
    IDataObject myDataObject = Clipboard.GetDataObject();

    // Checks whether the data is present or not in the Clipboard.
    if(myDataObject.GetDataPresent(DataFormats.StringFormat)) 
    {
        String clipString = (String)myDataObject.GetData(DataFormats.StringFormat);
        Console.WriteLine(clipString);
    } 
    else 
    {
        Console.WriteLine("No String information was contained in the clipboard.");
    }
}
catch(Exception e)
{
    Console.WriteLine(e.Message);
}
        Try
            Dim myString As String = "This is a String from the ClipBoard"
            ' Sets the data to the Clipboard.   
            Clipboard.SetDataObject(myString)
            Dim myDataObject As IDataObject = Clipboard.GetDataObject()
          
            ' Checks whether the data is present or not in the Clipboard.
            If myDataObject.GetDataPresent(DataFormats.StringFormat) Then
                Dim clipString As String = CType(myDataObject.GetData(DataFormats.StringFormat), String)
                Console.WriteLine(clipString)
            Else
                Console.WriteLine("No String information was contained in the clipboard.")
            End If
        Catch e As Exception
            Console.WriteLine(e.Message)
        End Try
   End Sub
End Class

Uwagi

To pole jest używane przez IDataObject interfejs i klasę DataObject do określania typu danych.

Podczas dodawania do elementu lub do IDataObject implementacji DataObjectprogramu użyj tego pola jako formatu metod IDataObject.SetData i DataObject.SetData .

Aby sprawdzić, czy obiekt tego typu istnieje, użyj tego pola jako formatu metod IDataObject.GetDataPresent i DataObject.GetDataPresent .

Aby uzyskać obiekt tego typu, użyj go jako formatu metod IDataObject.GetData i DataObject.GetData .

Uwaga

Format klasy ciągu jest specyficzny tylko dla Windows Forms i nie będzie rozpoznawany przez aplikacje utworzone poza Windows Forms.

Dotyczy

Zobacz też