HtmlFormatHelper.CreateHtmlFormat(String) Method

Definition

Takes a string that represents HTML content and adds the necessary headers to ensure it is formatted correctly for share and Clipboard operations.

public:
 static Platform::String ^ CreateHtmlFormat(Platform::String ^ htmlFragment);
 static winrt::hstring CreateHtmlFormat(winrt::hstring const& htmlFragment);
public static string CreateHtmlFormat(string htmlFragment);
function createHtmlFormat(htmlFragment)
Public Shared Function CreateHtmlFormat (htmlFragment As String) As String

Parameters

htmlFragment
String

Platform::String

winrt::hstring

A string representing the HTML content.

Returns

String

Platform::String

winrt::hstring

A string representing the formatted HTML.

Examples

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