This document is archived and information here might be outdated.  Recommended version.


ISimpleFillSymbol.Style Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > IS > ISimpleFillSymbol Interface > ISimpleFillSymbol.Style Property
ArcGIS Developer Help

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

.NET Samples

Create a custom tool Custom UI elements using add-ins Creating a toolbar of globe tools Executing geoprocessing tools in the background Building a MapViewer application using the ArcGIS Engine controls Triangle graphic element