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


ILasWriter.AddPointsCStyle Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (GeoDatabaseExtensions)  

ILasWriter.AddPointsCStyle Method

Add point records using C-Style array.

[Visual Basic .NET]
Public Sub AddPointsCStyle ( _
    ByVal Count As Integer, _
    ByRef pPoints As WKSPointZ, _
    ByRef pIntensities As Integer, _
    ByRef pCodes As Integer, _
    ByRef pFlags As Integer, _
    ByRef pGPS As Double, _
    ByRef pRGBs As RGB32, _
    ByRef pNIRs As Integer, _
    ByVal extraByteCount As Integer, _
    ByRef extraBytes As Byte& _
)
[C#]
public void AddPointsCStyle (
    int Count,
    ref WKSPointZ pPoints,
    ref int pIntensities,
    ref int pCodes,
    ref int pFlags,
    ref double pGPS,
    ref RGB32 pRGBs,
    ref int pNIRs,
    ref int extraByteCount,
    ref Byte& extraBytes
);
[C++]
HRESULT AddPointsCStyle(
  long Count,
  _WKSPointZ* pPoints,
  long* pIntensities,
  long* pCodes,
  long* pFlags,
  double* pGPS,
  _RGB32* pRGBs,
  long* pNIRs,
  long extraByteCount,
  Byte* extraBytes
);
[C++]

Parameters Count [in] Count is a parameter of type long pPoints [in]
pPoints is a parameter of type _WKSPointZ pIntensities [in] pIntensities is a parameter of type long pCodes [in] pCodes is a parameter of type long pFlags [in] pFlags is a parameter of type long pGPS [in] pGPS is a parameter of type double pRGBs [in]
pRGBs is a parameter of type _RGB32 pNIRs [in] pNIRs is a parameter of type long extraByteCount [in] extraByteCount is a parameter of type long extraBytes [in] extraBytes is a parameter of type Byte

Product Availability

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

See Also

ILasWriter Interface