Framework / Presentation Layer / Graphics / Appearance Styles / Fill Styles / Color Fill Style

In This Topic
Color Fill Style
In This Topic
The solid color fill style fills the object with a solid color. You can apply a solid color filling by creating an instance of the NColorFillStyle class. For example:
C#
Copy Code
someObject.FillStyle = new NColorFillStyle(Color.Green);
Visual Basic
Copy Code
someObject.FillStyle = new NColorFillStyle(Color.Green)
See Also