Gets and sets the brush type. | |
Syntax: | ApBrushTypeEnum = object.Type object.Type = ApBrushTypeEnum |
Description: | CimBrush.Style contains the brush
type. The value of this property defaults to apBrushSolid. Since this is a default property, you can omit it when you reference it. Examples The following CimView script excerpt sets the first series' brush type to solid: cimOleObj.Series.Item(0).Brush.Type = apBrushSolid Since this is a default property, the previous script can also be written ommitting the Type property: cimOleObj.Series.Item(0).Brush = apBrushSolid |