Interface IDrawingSource
A DWF-based Drawing Source
Inherited Members
System.ICloneable.Clone()
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: OSGeo.MapGuide.ObjectModels.DrawingSource
Assembly: OSGeo.MapGuide.ObjectModels.dll
Syntax
public interface IDrawingSource : IResource, IVersionedEntity, ICloneable, INotifyPropertyChanged
Properties
| Improve this Doc View SourceCoordinateSpace
Gets or sets the coordinate space.
Declaration
string CoordinateSpace { get; set; }
Property Value
Type | Description |
---|---|
System.String | The coordinate space. |
Sheet
Gets the sheets.
Declaration
IEnumerable<IDrawingSourceSheet> Sheet { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IDrawingSourceSheet> | The sheets. |
SourceName
Gets or sets the name of the source (dwf file).
Declaration
string SourceName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the source. |
Methods
| Improve this Doc View SourceAddSheet(IDrawingSourceSheet)
Adds the sheet.
Declaration
void AddSheet(IDrawingSourceSheet sheet)
Parameters
Type | Name | Description |
---|---|---|
IDrawingSourceSheet | sheet | The sheet. |
CreateSheet(String, Double, Double, Double, Double)
Creates the sheet.
Declaration
IDrawingSourceSheet CreateSheet(string name, double minx, double miny, double maxx, double maxy)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.Double | minx | The minx. |
System.Double | miny | The miny. |
System.Double | maxx | The maxx. |
System.Double | maxy | The maxy. |
Returns
Type | Description |
---|---|
IDrawingSourceSheet |
RemoveAllSheets()
Removes all sheets.
Declaration
void RemoveAllSheets()
RemoveSheet(IDrawingSourceSheet)
Removes the sheet.
Declaration
void RemoveSheet(IDrawingSourceSheet sheet)
Parameters
Type | Name | Description |
---|---|---|
IDrawingSourceSheet | sheet | The sheet. |