DataPackage.SetText(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataPackage에 포함된 텍스트를 설정합니다.
public:
virtual void SetText(Platform::String ^ value) = SetText;
void SetText(winrt::hstring const& value);
public void SetText(string value);
function setText(value)
Public Sub SetText (value As String)
매개 변수
- value
-
String
Platform::String
winrt::hstring
텍스트입니다.
예제
//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!");
}
설명
이 메서드는 StandardDataFormats.Text의 텍스트 값을 설정합니다. 를 호출 dataPackage.setText(StandardDataFormats.Text)
하는 것과 같습니다.
Text는 DataPackage 개체가 직접 지원하는 데이터 형식 중 하나입니다. 지원되는 다른 데이터 형식에 대한 자세한 내용은 StandardDataFormats 클래스를 참조하세요.