namespace SharpMap.Api.Enums { /// /// Labelling behaviour for Multipart geometry collections /// public enum MultipartGeometryBehaviourEnum { /// /// Place label on all parts (default) /// All, /// /// Place label on object which the greatest length or area. /// /// /// Multipoint geometries will default to /// Largest, /// /// The center of the combined geometries /// CommonCenter, /// /// Center of the first geometry in the collection (fastest method) /// First } }