GeoSolidBrush¶
Namespace: ThinkGeo.Core
This class defines a GeoBrush of a single color. Brushes are used to fill area shapes on a GeoCanvas.
public class GeoSolidBrush : GeoBrush
Inheritance Object → GeoBrush → GeoSolidBrush
Remarks:
None
Properties¶
Color¶
This property gets or sets the color of the GeoSolidBrush.
public GeoColor Color { get; set; }
Property Value¶
Remarks:
None
Id¶
The id of the GeoBrush. This is always used as a key when in the cached brushes.
public long Id { get; }
Property Value¶
Constructors¶
GeoSolidBrush()¶
This is the constructor used to create a new GeoSolidBrush.
public GeoSolidBrush()
Remarks:
None
GeoSolidBrush(GeoColor)¶
This is the constructor used to create a new GeoSolidBrush.
public GeoSolidBrush(GeoColor color)
Parameters¶
color
GeoColor
This parameter represent the color of the GeoSolidBrush.
Remarks:
None