Glyphs.Fill Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property Brush ^ Fill { Brush ^ get(); void set(Brush ^ value); };
Brush Fill();
void Fill(Brush value);
public Brush Fill { get; set; }
var brush = glyphs.fill;
glyphs.fill = brush;
Public Property Fill As Brush
<Glyphs Fill="{StaticResource resourceName"/>
- or -
<Glyphs Fill="colorString"/>
- or -
<Glyphs>
<Glyphs.Fill>singleBrush</Glyphs.Fill>
</Glyphs>
Property Value
The brush to use to render the glyphs. The default is null, which is evaluated as Transparent for rendering.
Remarks
Because the default is null, you almost always should define a value for Fill somehow if you want your Glyphs to render in UI.