ArcGIS Pro 3.1 API Reference Guide
ArcGIS.Desktop.Core Namespace / Project Class / SaveMetadataAsHTML Method
Example Version

    SaveMetadataAsHTML Method (Project)
    Save the metadata of the current item as HTML. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public void SaveMetadataAsHTML( 
       string outputFilePath,
       MDSaveAsHTMLOption outputType
    )

    Parameters

    outputFilePath
    outputType
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Item: Save the metadata of the current item as HTML: SaveMetadataAsHTML
    await QueuedTask.Run(() => metadataItemToSaveAsHTML.SaveMetadataAsHTML(@"E:\Temp\OutputHTML.htm", MDSaveAsHTMLOption.esriCurrentMetadataStyle));
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.0 or higher.
    See Also