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


ITerrainLasDataImporter.AddProperty Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IT > ITerrainLasDataImporter Interface > ITerrainLasDataImporter.AddProperty Method
ArcGIS Developer Help

ITerrainLasDataImporter.AddProperty Method

Used to indicate which, if any, LiDAR properties to retain and load into the target feature class in a BLOB field.

[Visual Basic .NET]
Public Sub AddProperty ( _
    ByVal property As esriTerrainLasDataPropertyType, _
    ByVal FieldName As String _
)
[C#]
public void AddProperty (
    esriTerrainLasDataPropertyType property,
    string FieldName
);
[C++]
HRESULT AddProperty(
  esriTerrainLasDataPropertyType property,
  BSTR FieldName
);
[C++]
Parameters
property [in]

property is a parameter of type esriTerrainLasDataPropertyType FieldName [in]
FieldName is a parameter of type BSTR

Product Availability

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

Description

AddProperty is used to select which LIDAR attributes, if any, to import. The values will be stored in BLOBs in the output feature class. They can be retreived via the TerrainBlobReader. Call it repeatedly if more than one attribute is to be loaded.

The caller is responsible for adding the BLOB field(s) to the target feature class before calling Import. The FieldName is used to indicate which field is used to store the property.

See Also

ITerrainLasDataImporter Interface