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


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

ITinValueFilter2.ZeroTagValueExcluded Property

Indicates if zero tag value should be excluded.

[Visual Basic .NET]
Public Property ZeroTagValueExcluded As Boolean
[C#]
public bool ZeroTagValueExcluded {get; set;}
[C++]
HRESULT get_ZeroTagValueExcluded(
  VARIANT_BOOL pbExcludeZeroTagValue
);
[C++]
HRESULT put_ZeroTagValueExcluded(
  Boolean* pbExcludeZeroTagValue
);
[C++]
Parameters
pbExcludeZeroTagValue [in]

pbExcludeZeroTagValue is a parameter of type bool pbExcludeZeroTagValue [out, retval]
pbExcludeZeroTagValue is a parameter of type bool*

Product Availability

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

Description

Determines if elements with tag values of 0 are allowed to pass thru the filter or are blocked.

In some applications it may be desirable to exclude elements that have not had their tag value set explicitly. Since the default tag value for all elements is 0 you can exclude elements that haven't been tagged by setting ZeroTagValueExcluded to TRUE. This is assuming elements that have been tagged explicitly are done so with non-zero values.

The default value is FALSE.

See Also

ITinValueFilter2 Interface