pub type Brush = BrushIsOwned<true>;
Expand description
A brush is a drawing tool for filling in areas.
Brush
represents a C++wxBrush
class instance which your code has ownership,BrushIsOwned
<false>
represents one which don’t own.- Use
Brush
’snew()
orBuildable::builder()
(if available) to create an instance of this class. - See C++
wxBrush
class’s documentation for more details.
Aliased Type§
pub struct Brush(/* private fields */);