ReferencesCommonDrawingDraw.RegionHighlightX()RegionHighlightXAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Region Highlight X IDrawingTool. Methods and Properties ParameterDescriptionStartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing objectEndAnchorAn IDrawingTool’s ChartAnchor representing the end point of the drawing objectAreaBrushA Brush class representing the fill color of the draw objectAreaOpacityAn int value representing the opacity of the area colorOutlineStrokeThe Stroke object used to draw the object’s outline Examples 1// Instantiate a RegionHighlightX object2RegionHighlightX myReg = Draw.RegionHighlightX(this, "tag1", 10, 0, Brushes.Blue);3 4// Change the object's opacity5myReg.AreaOpacity = 25;