Search
Box.FillStyle Property
See Also
 



Gets or sets the gradient mode used to fill the interior of this box.

 Syntax

VB6  Copy Code

Public Property Get FillStyle() As EFillStyle
Public Property Let FillStyle( _
    ByVal Value As EFillStyle _
)

C++  Copy Code

public:
EFillStyle get_FillStyle ()
void put_FillStyle (
    EFillStyle value
)

 Property Value

A member of the EFillStyle enumeration. Initialized with FlowChart.BoxFillStyle.

 Remarks

Sets how the box interior is filled. Currently solid-color and gradient brushes are supported. Possible values are:

  • fsSolid - the box is filled with a solid-color brush, using the FillColor property;
  • fsGradientH - box is filled with a horizontal-gradient brush; the gradient colors are defined by FillColor and FillColor2 properties;
  • fsGradientV - box is filled with a vertical-gradient brush; the gradient colors are defined by FillColor and FillColor2 properties;

 See Also