Exemplo n.º 1
0
        /// <summary>
        /// Returns the variable length record for the given index.
        /// </summary>
        /// <param name="i">the index starting from 0 of the variable length record to fetch</param>
        /// <returns>a new variable length record instance</returns>
        /// <remarks>Use VariableLengthRecordsCount property to determine the number of
        /// variable length records available on the header.</remarks>
        public LASVariableLengthRecord GetVariableLengthRecord(UInt32 i)
        {
            LASVLRH vlrh = CAPI.LASHeader_GetVLR(hHeader, i);

            return(new LASVariableLengthRecord(vlrh));
        }