ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / SymbolFactory Class / ConstructPolygonSymbolWithPenInkRipple Method
ArcGIS.Core.CIM.CIMColor
Example

In This Topic
    ConstructPolygonSymbolWithPenInkRipple Method (SymbolFactory)
    In This Topic
    Constructs a polygon symbol in the specified color representing a pen and ink ripple water fill. 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 ConstructPolygonSymbolWithPenInkRipple( 
       CIMColor color
    )
    Public Function ConstructPolygonSymbolWithPenInkRipple( _
       ByVal color As CIMColor _
    ) As CIMPolygonSymbol

    Parameters

    color
    ArcGIS.Core.CIM.CIMColor

    Return Value

    Example
    Snippet Pen and Ink: Ripple
    /// <summary>
    /// Constructs a polygon symbol in the specified color representing a pen and ink ripple water fill. See https://www.esri.com/arcgis-blog/products/arcgis-pro/mapping/please-steal-this-pen-and-ink-style/
    /// ![polygonRipple.png](http://Esri.github.io/arcgis-pro-sdk/images/Symbology/polygonRipple.png)
    /// </summary>
    /// <returns></returns>
    private static Task<CIMPolygonSymbol> CreateRippleFillPolygonAsync()
    {
      return QueuedTask.Run<CIMPolygonSymbol>(() =>
      {
        //Ripple pen and ink
        var penInkRipple = SymbolFactory.Instance.ConstructPolygonSymbolWithPenInkRipple(CIMColor.CreateRGBColor(13, 24, 54));
        return penInkRipple;
      });
    }
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also