Interface IMapSet
Describes the map set of the Flexible Layout
Namespace: OSGeo.MapGuide.ObjectModels.ApplicationDefinition
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IMapSet
Properties
| Improve this Doc View SourceMapGroupCount
The number of map groups
Declaration
int MapGroupCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
MapGroups
The map groups
Declaration
IEnumerable<IMapGroup> MapGroups { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IMapGroup> |
Methods
| Improve this Doc View SourceAddGroup(IMapGroup)
Adds a map group
Declaration
void AddGroup(IMapGroup group)
Parameters
Type | Name | Description |
---|---|---|
IMapGroup | group |
GetGroupAt(Int32)
Gets the map group at the given index
Declaration
IMapGroup GetGroupAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Returns
Type | Description |
---|---|
IMapGroup |
RemoveGroup(IMapGroup)
Removes the given map group
Declaration
void RemoveGroup(IMapGroup group)
Parameters
Type | Name | Description |
---|---|---|
IMapGroup | group |