Condividi tramite


StandardDataFormats.Text Proprietà

Definizione

Proprietà di sola lettura che restituisce il valore della stringa ID di formato corrispondente al formato Text.

public:
 static property Platform::String ^ Text { Platform::String ^ get(); };
static winrt::hstring Text();
public static string Text { get; }
var string = StandardDataFormats.text;
Public Shared ReadOnly Property Text As String

Valore della proprietà

String

Platform::String

winrt::hstring

Valore della stringa ID di formato corrispondente al formato Testo.

Esempio

In questo esempio viene illustrato l'uso della proprietà Text . Per usare il codice in questo esempio, aggiungere un listener eventi all'app per gestire l'evento attivato . Inserire quindi questo codice nella funzione che questo listener evento chiama.

//To see this code in action, add a call to ShareSourceLoad to your constructor or other
//initializing function.
private void ShareSourceLoad()
{
    DataTransferManager dataTransferManager = DataTransferManager.GetForCurrentView();
    dataTransferManager.DataRequested += new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.DataRequested);
}

private void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
{
    DataRequest request = e.Request;
    request.Data.Properties.Title = "Share Text Example";
    request.Data.Properties.Description = "An example of how to share text.";
    request.Data.SetText("Hello World!");
}

Si applica a