This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > IS > ISimpleFillSymbol Interface > ISimpleFillSymbol.Style Property (ArcObjects .NET 10.5 SDK) |
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
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.
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.