Interface IRasterLayerDefinition
Represents a layer definition based on a raster-based feature source
Inherited Members
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: OSGeo.MapGuide.ObjectModels.LayerDefinition
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IRasterLayerDefinition : ISubLayerDefinition, INotifyPropertyChanged
Properties
| Improve this Doc View SourceFeatureName
Gets or sets the name of the feature class.
Declaration
string FeatureName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the feature class. |
Geometry
Gets or sets the raster property.
Declaration
string Geometry { get; set; }
Property Value
Type | Description |
---|---|
System.String | The raster property. |
GridScaleRange
Gets the grid scale ranges.
Declaration
IEnumerable<IGridScaleRange> GridScaleRange { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IGridScaleRange> | The grid scale ranges. |
GridScaleRangeCount
Gets the grid scale range count.
Declaration
int GridScaleRangeCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceAddGridScaleRange(IGridScaleRange)
Adds the specified grid scale range
Declaration
void AddGridScaleRange(IGridScaleRange range)
Parameters
Type | Name | Description |
---|---|---|
IGridScaleRange | range |
GetScaleRangeAt(Int32)
Gets the scale range at.
Declaration
IGridScaleRange GetScaleRangeAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index. |
Returns
Type | Description |
---|---|
IGridScaleRange |
IndexOfScaleRange(IGridScaleRange)
Indexes the of scale range.
Declaration
int IndexOfScaleRange(IGridScaleRange range)
Parameters
Type | Name | Description |
---|---|---|
IGridScaleRange | range | The range. |
Returns
Type | Description |
---|---|
System.Int32 |
RemoveGridScaleRange(IGridScaleRange)
Removes the specified grid scale range
Declaration
void RemoveGridScaleRange(IGridScaleRange range)
Parameters
Type | Name | Description |
---|---|---|
IGridScaleRange | range |