StandardDataFormats.Text 属性

定义

一个只读属性,返回与 Text 格式对应的格式 ID 字符串值。

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

属性值

String

Platform::String

winrt::hstring

与文本格式对应的格式 ID 字符串值。

示例

此示例演示如何使用 Text 属性。 若要使用此示例中的代码,请将事件侦听器添加到应用以处理 激活 的事件。 然后将此代码放入此事件侦听器调用的函数中。

//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!");
}

适用于