Interface IChannelBand
Defines how to scale numbers into a color channel
Namespace: OSGeo.MapGuide.ObjectModels.LayerDefinition
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IChannelBand
Properties
| Improve this Doc View SourceBand
Gets or sets the name of the band
Declaration
string Band { get; set; }
Property Value
Type | Description |
---|---|
System.String |
HighBand
Gets or sets the high band value. Default is high value found in band. Band values greater than this are snapped to this number
Declaration
double? HighBand { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
HighChannel
Gets or sets the high channel value. Default is 255. Range is 0:255
Declaration
byte HighChannel { get; set; }
Property Value
Type | Description |
---|---|
System.Byte |
LowBand
Gets or sets the low band value. Default is low value found in band. Band values less than this are snapped to this number
Declaration
double? LowBand { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
LowChannel
Gets or sets the low channel value. Default is 0. Range is 0:255. LowBand is mapped to this number. LowChannel can be greater than HighChannel
Declaration
byte LowChannel { get; set; }
Property Value
Type | Description |
---|---|
System.Byte |