public PolygonBuilderEx( IEnumerable<Polygon> polygons, AttributeFlags attributes, SpatialReference spatialReference )
Public Function New( _ ByVal polygons As IEnumerable(Of Polygon), _ ByVal attributes As AttributeFlags, _ Optional ByVal spatialReference As SpatialReference _ )
Parameters
- polygons
- The polygons. Each part in the polygons will be a part in the new builder.
- attributes
- AttributeFlags to set the HasZ, HasM and HasID attributes. If no attributes should be set, pass AttributeFlags.None. If all attributes should be set, pass AttributeFlags.AllAttributes. Use the bitwise OR operator to set two attributes. For example, to set HasZ = true and HasM = true, pass AttributeFlags.HasZ | AttributeFlags.HasM.
- spatialReference
- (Optional) The SpatialReference. The default value is null.