ArcObjects Library Reference (GeoDatabase)  

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(
  VARIANT_BOOL pbExcludeZeroTagValue
);
[C++]

Parameters

pbExcludeZeroTagValue [out, retval]   pbExcludeZeroTagValue is a parameter of type VARIANT_BOOL pbExcludeZeroTagValue [in]   pbExcludeZeroTagValue is a parameter of type VARIANT_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