ArcObjects Library Reference (GeoDatabase)  

ITinImporter.GetTinNamesFromLandXML Method

Gets the names of the TINs from LandXML file.

[Visual Basic .NET]
Public Sub GetTinNamesFromLandXML ( _
    ByVal xmlName As String, _
    ByVal pTrackCancel As ITrackCancel, _
    ByRef ppOutTinNames As IStringArray _
)
[C#]
public void GetTinNamesFromLandXML (
    string xmlName,
    ITrackCancel pTrackCancel,
    ref IStringArray ppOutTinNames
);
[C++]
HRESULT GetTinNamesFromLandXML(
  BSTR xmlName,
  ITrackCancel* pTrackCancel,
  IStringArray** ppOutTinNames
);
[C++]

Parameters

xmlName [in]   xmlName is a parameter of type BSTR pTrackCancel [in]

  pTrackCancel is a parameter of type ITrackCancel

ppOutTinNames [out]

  ppOutTinNames is a parameter of type IStringArray

Product Availability

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

Description

Returns the names of the TINs contained in the specified LandXML file.

xmlName is a string containing the full path to the LandXML file.

pTrackCancel references a CancelTracker object and can be used to cancel the process. To bypass this feature pass a NULL pointer.

ppOutTinNames is a StrArray into which the TIN names will be placed. It need not already be instantiated, the mthod will create it. The number of elements in the output array will be equal to the number of TINs in the LandXML file. If a TIN is in the file unnamed, it will be included as an empty string into the output array.

See Also

ITinImporter Interface