ArcObjects Library Reference (Display)  

ISimpleFillSymbol.Style Property

Fill style.

[Visual Basic .NET]
Public Property Style As esriSimpleFillStyle
[C#]
public esriSimpleFillStyle Style {get; set;}
[C++]
HRESULT get_Style(
  esriSimpleFillStyle* Style
);
[C++]
HRESULT put_Style(
  esriSimpleFillStyle Style
);
[C++]

Parameters

Style [out, retval]

  Style is a parameter of type esriSimpleFillStyle

Style [in]

  Style is a parameter of type esriSimpleFillStyle

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Style is the enumeration that controls the pattern used as the fill.  The avaialble fill options include: esriSFSBackwardDiagonal, esriSFSCross, esriSFSDiagonalCross, esriSFSForwardDiagonal, esriSFSHollow, esriSFSHorizontal, esriSFSNull, esriSFSSolid and esriSFSVertical. esriSFSSolid is the default Style.

Remarks

It is strongly recommended to not use any Style other than esriSFSSolid. All of the remaining style enumerations can be accomplished using other fill symbol types such as ILineFillSymbol, or by specifying IColor::NullColor for hollow symbols.

See Also

ISimpleFillSymbol Interface