ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / SymbolFactory Class / ConstructPolygonSymbolWithPenInkStipple Method
ArcGIS.Core.CIM.CIMColor
A boolean indicating if border strokes are to be included in the symbol.
Example

In This Topic
    ConstructPolygonSymbolWithPenInkStipple Method (SymbolFactory)
    In This Topic
    Constructs a polygon symbol in the specified color representing a pen and ink stipple effect. See %Pen and Ink styles:https://www.esri.com/arcgis-blog/products/arcgis-pro/mapping/please-steal-this-pen-and-ink-style%
    Syntax
    public CIMPolygonSymbol ConstructPolygonSymbolWithPenInkStipple( 
       CIMColor color,
       bool includeBorder
    )
    Public Function ConstructPolygonSymbolWithPenInkStipple( _
       ByVal color As CIMColor, _
       ByVal includeBorder As Boolean _
    ) As CIMPolygonSymbol

    Parameters

    color
    ArcGIS.Core.CIM.CIMColor
    includeBorder
    A boolean indicating if border strokes are to be included in the symbol.

    Return Value

    Example
    Snippet Pen and Ink: Stipple
    /// <summary>
    /// Constructs a polygon symbol in the specified color representing a pen and ink stipple effect. See https://www.esri.com/arcgis-blog/products/arcgis-pro/mapping/please-steal-this-pen-and-ink-style/
    /// ![polygonStipple.png](http://Esri.github.io/arcgis-pro-sdk/images/Symbology/polygonStipple.png)
    /// </summary>
    /// <returns></returns>
    private static Task<CIMPolygonSymbol> CreateStippleFillPolygonAsync()
    {
      return QueuedTask.Run<CIMPolygonSymbol>(() =>
      {
        //Stipple pen and ink
        var penInkRipple = SymbolFactory.Instance.ConstructPolygonSymbolWithPenInkStipple(CIMColor.CreateRGBColor(78, 133, 105), true);
        return penInkRipple;
      });
    }
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also