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


ITinFeatureEdit.ElementsIgnoredInConflictTest Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITinFeatureEdit Interface > ITinFeatureEdit.ElementsIgnoredInConflictTest Property
ArcGIS Developer Help

ITinFeatureEdit.ElementsIgnoredInConflictTest Property

The TIN nodes or edges to be ignored in conflict detection (used by processes such as CanAdd and CanMove).

[Visual Basic .NET]
Public Property ElementsIgnoredInConflictTest As Integer
[C#]
public int ElementsIgnoredInConflictTest {get; set;}
[C++]
HRESULT get_ElementsIgnoredInConflictTest(
  long pElementsExcluded
);
[C++]
HRESULT put_ElementsIgnoredInConflictTest(
  System.Int32* pElementsExcluded
);
[C++]
Parameters
pElementsExcluded [in]

pElementsExcluded is a parameter of type long pElementsExcluded [out, retval]
pElementsExcluded is a parameter of type long*

Product Availability

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

Description

Indicates what nodes, if any, to ignore when evaluating potential conflicts. The evaluators are the ITinFeatureEdit.Can* methods such as CanMove and CanRotate.

The value is based on the esriTinIgnoredElementType enumeration. The options are:

esriTinNodesWithNonZeroTag
esriTinNodesWithZeroTag
esriTinNothing

The parameter is defined as a Long so in the future if other options are added they can be combined using the '+' operator. For example:

esriTinNodesWithZeroTag + esriTinEdgesWithNonZeroTag

See Also

ITinFeatureEdit Interface