Skip to main content
A newer version of this page is available. .

SolidBrushObject(String) Constructor

Creates a SolidBrushObject object based on the specified string data.

Namespace: DevExpress.XtraGauges.Core.Drawing

Assembly: DevExpress.XtraGauges.v18.2.Core.dll

Declaration

public SolidBrushObject(
    string dataTag
)

Parameters

Name Type Description
dataTag String

A string that contains data used to initialize the created SolidBrushObject object.

Remarks

The following is an example of using the current constructor. The dataTag parameter identifies the color used to initialize the created brush object.


arcScaleComponent1.AppearanceScale.Brush = new SolidBrushObject("Color:SaddleBrown");
See Also