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


IOverride.RemoveOverride Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IO > IOverride Interface > IOverride.RemoveOverride Method
ArcGIS Developer Help

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