<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to create a custom ExportFormat in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-create-a-custom-exportformat/m-p/1697619#M13503</link>
    <description>&lt;P&gt;I was looking at creating a custom ExportFormat, but was wondering where to implement the actual export method. I was expecting an overridable Execute() method or something like that, but can't find it.&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic11573.html" target="_self"&gt;The documentation&lt;/A&gt; doesn't really go into details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess the basics should be something like this:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;internal class MyExporter : ExportFormat
{
    public MyExporter(): base()
    {
        _extensions.Add("my");            
    }

    public override bool ValidateOutputFilePath()
    {
        return true;
    }       
}

///

internal class Button1 : Button
{
    protected override void OnClick()
    {
        QueuedTask.Run(() =&amp;gt;
        {
            var e = new MyExporter();
            e.OutputFileName = @"d:\temp\test.my";
            MapView.Active.Export(e);
        });
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Apr 2026 13:58:28 GMT</pubDate>
    <dc:creator>BerendVeldkamp</dc:creator>
    <dc:date>2026-04-22T13:58:28Z</dc:date>
    <item>
      <title>How to create a custom ExportFormat</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-create-a-custom-exportformat/m-p/1697619#M13503</link>
      <description>&lt;P&gt;I was looking at creating a custom ExportFormat, but was wondering where to implement the actual export method. I was expecting an overridable Execute() method or something like that, but can't find it.&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic11573.html" target="_self"&gt;The documentation&lt;/A&gt; doesn't really go into details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess the basics should be something like this:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;internal class MyExporter : ExportFormat
{
    public MyExporter(): base()
    {
        _extensions.Add("my");            
    }

    public override bool ValidateOutputFilePath()
    {
        return true;
    }       
}

///

internal class Button1 : Button
{
    protected override void OnClick()
    {
        QueuedTask.Run(() =&amp;gt;
        {
            var e = new MyExporter();
            e.OutputFileName = @"d:\temp\test.my";
            MapView.Active.Export(e);
        });
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2026 13:58:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-create-a-custom-exportformat/m-p/1697619#M13503</guid>
      <dc:creator>BerendVeldkamp</dc:creator>
      <dc:date>2026-04-22T13:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a custom ExportFormat</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-create-a-custom-exportformat/m-p/1699196#M13522</link>
      <description>&lt;P&gt;The api is not extensible in that regard. You would basically have to write something like:&lt;/P&gt;&lt;P&gt;MyModule.Current.MyCustomExportMethod(MapView.Active, ....) assuming that u cld actually access, via the available public api, the relevant properties, etc. u wld need for implementation of your custom export&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 21:50:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-create-a-custom-exportformat/m-p/1699196#M13522</guid>
      <dc:creator>CharlesMacleod</dc:creator>
      <dc:date>2026-04-29T21:50:42Z</dc:date>
    </item>
  </channel>
</rss>

