StandardDataFormats.Html Property

Definition

A read-only property that returns the format ID string value corresponding to the HTML format.

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

Property Value

String

Platform::String

winrt::hstring

The format ID string value corresponding to the HTML format.

Examples

This example demonstrates the use of the Html property. To use the code in this example, add an event listener to your app to handle the activated event. Then put this code in the function that this event listener calls.

public void ShareSourceLoad()
{
    DataTransferManager dataTransferManager = DataTransferManager.GetForCurrentView();
    dataTransferManager.DataRequested += new TypedEventHandler<DataTransferManager, DataRequestedEventArgs>(this.DataRequested);
}

async void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
{
    string htmlExample = "<p>Here is our store logo: <img src='assets/logo.png'>.</p>";
    string fileExample = "assets\\logo.png";
    RandomAccessStreamReference streamRef = null;
    Windows.Storage.StorageFile file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(fileExample);
    try
    {
        streamRef = Windows.Storage.Streams.RandomAccessStreamReference.CreateFromFile(file);
    }
    catch (Exception ex)
    {
        // TODO: Handle the exception.
    }
    string htmlFormat = Windows.ApplicationModel.DataTransfer.HtmlFormatHelper.CreateHtmlFormat(htmlExample);
    DataRequest request = e.Request;
    request.Data.Properties.Title = "Share HTML Example";
    request.Data.Properties.Description = "An example of how to share HTML.";
    request.Data.SetHtmlFormat(htmlFormat);
    request.Data.ResourceMap[fileExample] = streamRef;
}

Applies to