DataPackagePropertySet.Title | title property
Gets or sets the text that displays as a title for the contents of the DataPackage object.
Syntax
var title = dataPackagePropertySet.title;
dataPackagePropertySet.title = title;
Property value
Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]
The text that displays as a title for the contents of the DataPackage object.
Remarks
We recommend you always supply a title when creating a DataPackage object. It can help users distinguish between one share operation and another.
Examples
This example shows how you can set the title for the content in a DataPackage.
function registerForShare() { var dataTransferManager = Windows.ApplicationModel.DataTransfer.DataTransferManager.getForCurrentView(); dataTransferManager.addEventListener("datarequested", shareTextHandler); } function shareTextHandler(e) { var request = e.request; request.data.properties.title = "Share Text Example"; request.data.properties.description = "A demonstration that shows how to share."; request.data.setText("Hello World!"); }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Minimum supported phone | Windows Phone 8 |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 2/25/2013
