com.esri.arcgis.display
Interface IBasicFillSymbol

All Superinterfaces:
Serializable
All Known Implementing Classes:
BasicFillSymbol

public interface IBasicFillSymbol
extends Serializable

Provides access to properties of the basic fill symbol.

Remarks

Use IBasicFillSymbol to create a new basic fill symbol for drawing polygon geometries.

FillPattern is the property that returns a reference to a fill pattern such as GradientPattern, LinePattern or SolidColorPattern. When new basic fill symbols are created, the fill pattern is defaulted to solid color pattern with black color fill. Use IFillPattern to change the fill pattern.

Product Availability

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


Method Summary
 IFillPattern getFillPattern()
          Fill pattern of a basic fill symbol.
 void setFillPatternByRef(IFillPattern pattern)
          Fill pattern of a basic fill symbol.
 

Method Detail

getFillPattern

IFillPattern getFillPattern()
                            throws IOException,
                                   AutomationException
Fill pattern of a basic fill symbol.

Remarks

Use IFillPattern interface to change FillPattern property of a BasicFillSymbol object.

Product Availability

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

Returns:
A reference to a com.esri.arcgis.display.IFillPattern
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFillPatternByRef

void setFillPatternByRef(IFillPattern pattern)
                         throws IOException,
                                AutomationException
Fill pattern of a basic fill symbol.

Product Availability

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

Parameters:
pattern - A reference to a com.esri.arcgis.display.IFillPattern (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.