ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Layouts Namespace / LayoutFactory Class
Members Example

In This Topic
    LayoutFactory Class
    In This Topic
    Provides methods to create new layout project items.
    Object Model
    LayoutFactory ClassLayout ClassLayout ClassILayoutFactory Interface
    Syntax
    public class LayoutFactory : ILayoutFactory  
    Public Class LayoutFactory 
       Implements ILayoutFactory 
    Remarks

    Creating a new layout simply generates a new layout project item that appears in the Layouts folder in the Contents pane. The next logical steps are to create new layout elements. Refer to the ElementFactory to add new elements to layout.

    A new layout project item is not automatically opened in a layout view pane. Use methods in the LayoutFrameworkExtender to open a layout project item in a pane.

    Example
    Create a new, basic layout and open it
    //Create a new, basic layout and open it.
    
    //Create layout with minimum set of parameters on the worker thread
    Layout lyt = await QueuedTask.Run(() =>
    {
      var newLayout = LayoutFactory.Instance.CreateLayout(8.5, 11, LinearUnit.Inches);
      newLayout.SetName("New 8.5x11 Layout");
      return newLayout;
    });
          
    //Open new layout on the GUI thread
    await ProApp.Panes.CreateLayoutPaneAsync(lyt);
    Inheritance Hierarchy

    System.Object
       ArcGIS.Desktop.Layouts.LayoutFactory

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also