ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / StyleItem Class / PatchHeight Property
Example

In This Topic
    PatchHeight Property (StyleItem)
    In This Topic
    Gets or sets the height of the preview image for the style item.
    Syntax
    Public Property PatchHeight As Integer
    public int PatchHeight {get; set;}
    Example
    Create a Swatch for a given symbol
    {
        //Note: call within QueuedTask.Run()
        CIMSymbol symbolForSwatch = SymbolFactory.Instance.ConstructPointSymbol(ColorFactory.Instance.GreenRGB, 1.0, SimpleMarkerStyle.Circle);
        //You can generate a swatch for a text symbols also.
        var si = new SymbolStyleItem()
        {
            Symbol = symbolForSwatch,
            PatchHeight = 64,
            PatchWidth = 64
        };
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also