ArcObjects Library Reference (Geometry)  

IMultiPatch.InvalXYFootprint Method

Notifies the multipatch that its cached footprint has been modified by an outside agent. The footprint will be recalculated the next time it is requested.

[Visual Basic .NET]
Public Sub InvalXYFootprint ( _
)
[C#]
public void InvalXYFootprint (
);
[C++]
HRESULT InvalXYFootprint(
void
);

Product Availability

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

Description

InvalXYFootprint tells the MultiPatch that the XYFootprint it holds may have changed without its knowledge and needs to be recalculated before it can be used.  InvalXYFootprint should be called anytime the parts of the MultiPatch are altered without altering the MultiPatch as a whole.  Operations which operate on the entire MultiPatch or utilize the MultiPatch interfaces do not require InvalXYFootprint to be called.

See Also

IMultiPatch Interface