Interface IVectorScaleRange
The stylization to be applied to the vector features for a given scale range
Namespace: OSGeo.MapGuide.ObjectModels.LayerDefinition
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IVectorScaleRange
Properties
| Improve this Doc View SourceAreaStyle
Gets or sets the area style for this scale range
Declaration
IAreaVectorStyle AreaStyle { get; set; }
Property Value
Type | Description |
---|---|
IAreaVectorStyle |
LineStyle
Gets or sets the line style for this scale range
Declaration
ILineVectorStyle LineStyle { get; set; }
Property Value
Type | Description |
---|---|
ILineVectorStyle |
MaxScale
The zoomed out part of the scale range. Defaults to the application's maximum value if not specified. Exclusive
Declaration
double? MaxScale { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
MinScale
The zoomed in part of the scale range. Defaults to 0 if not specified. Inclusive
Declaration
double? MinScale { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
PointStyle
Gets or sets the point style for this scale range
Declaration
IPointVectorStyle PointStyle { get; set; }
Property Value
Type | Description |
---|---|
IPointVectorStyle |
Methods
| Improve this Doc View SourceClone()
Creates a clone of this instance
Declaration
IVectorScaleRange Clone()
Returns
Type | Description |
---|---|
IVectorScaleRange |