ArcObjects Library Reference (GeoDatabase)  

IOverride.RemoveOverride Method

Removes a given override from the blob.

[Visual Basic .NET]
Public Sub RemoveOverride ( _
    ByVal attrs As IGraphicAttributes, _
    ByVal idx As Integer _
)
[C#]
public void RemoveOverride (
    IGraphicAttributes attrs,
    int idx
);
[C++]
HRESULT RemoveOverride(
  IGraphicAttributes* attrs,
  long idx
);
[C++]

Parameters

attrs [in]

  attrs is a parameter of type IGraphicAttributes

idx [in]   idx is a parameter of type long

Product Availability

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

Remarks

RemoveOverride method can be used to remove override present on a specific graphical attribute given its index. Shape overrides cannot be handled using this method. For removing shape override, use IRepresentation::RemoveShapeOverride method.

 

See Also

IOverride Interface