/// <summary>
/// Constructs a polygon symbol in the specified color representing a pen and ink cross hatch effect. See https://www.esri.com/arcgis-blog/products/arcgis-pro/mapping/please-steal-this-pen-and-ink-style/
/// 
/// </summary>
{
//Note: Run withing QueuedTask
//Cross Hatch pen and ink
var penkInkCrossHatch = SymbolFactory.Instance.ConstructPolygonSymbolWithPenInkCrossHatch(CIMColor.CreateRGBColor(168, 49, 22), true);
CIMPolygonSymbol penInkCrossHatch = penkInkCrossHatch;
//To apply the symbol to a polygon feature layer
//var renderer = theLayer.GetRenderer() as CIMSimpleRenderer;
//renderer.Symbol = penInkCrossHatch.MakeSymbolReference();
//theLayer.SetRenderer(renderer);
}