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


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

ITinElement.IsEmpty Property

Indicates if the specified element is uninitialized.

[Visual Basic .NET]
Public ReadOnly Property IsEmpty As Boolean
[C#]
public bool IsEmpty {get;}
[C++]
HRESULT get_IsEmpty(
  Boolean* pbIsEmpty
);
[C++]
Parameters
pbIsEmpty [out, retval]

pbIsEmpty is a parameter of type bool*

Product Availability

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

Description

Indicates whether or not the element has been set with values.

When an element is instantiated using 'New' IsEmpty will return True.

When using QueryNext on one of the element enumerators, the end of the set is indicated by IsEmpty returning True.

See Also

ITinElement Interface