ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableFrameStyleItem Class
Members Example

In This Topic
    TableFrameStyleItem Class
    In This Topic
    Represents a table frame saved in a style.
    Object Model
    TableFrameStyleItem ClassCIMTableFrame Class
    Syntax
    public class TableFrameStyleItem : StyleItem, System.ComponentModel.INotifyPropertyChanged  
    Public Class TableFrameStyleItem 
       Inherits StyleItem
       Implements System.ComponentModel.INotifyPropertyChanged 
    Example
    How to search for table frames in a style
    public Task<IList<TableFrameStyleItem>> GetTableFramesFromStyleAsync(StyleProjectItem style, string searchString)
    {
      if (style == null)
        throw new System.ArgumentNullException();
    
      return QueuedTask.Run(() => style.SearchTableFrames(searchString));
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Desktop.Framework.Contracts.PropertyChangedBase
          ArcGIS.Desktop.Mapping.StyleItem
             ArcGIS.Desktop.Mapping.TableFrameStyleItem

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also