Catfood.Shapefile.ShapePolygonZ.ShapePolygonZ C# (CSharp) Méthode

ShapePolygonZ() protected méthode

A Shapefile Polygon Shape
Thrown if shapeData is null Thrown if an error occurs parsing shapeData
protected ShapePolygonZ ( int recordNumber, StringDictionary metadata, IDataRecord dataRecord, byte shapeData ) : System
recordNumber int The record number in the Shapefile
metadata System.Collections.Specialized.StringDictionary Metadata about the shape
dataRecord IDataRecord IDataRecord associated with the metadata
shapeData byte The shape record as a byte array
Résultat System
        protected internal ShapePolygonZ(int recordNumber, StringDictionary metadata, IDataRecord dataRecord, byte[] shapeData)
            : base(ShapeType.PolygonZ, recordNumber, metadata, dataRecord)
        {
            ParsePolygonZ(shapeData, out _boundingBox, out _parts);
        }
ShapePolygonZ