This document is archived and information here might be outdated. Recommended version. |
Retrieve the schematic diagram related to an in-memory schematic feature
/// <summary> /// Retrieve the schematic diagram related to an in-memory schematic feature /// </summary> /// <param name="schemFeature">The ISchematicInMemoryFeature contained in the schematic diagram</param> /// <returns>The retrieved ISchematicDiagram</returns> public ESRI.ArcGIS.ISchematicDiagram GetDiagramFromSchematicInMemoryFeature(ESRI.ArcGIS.Schematic.ISchematicInMemoryFeature schemFeature) { return schemFeature.SchematicDiagram; }
''' <summary> ''' Retrieve the schematic diagram related to an in-memory schematic feature ''' </summary> ''' <param name="schemFeature">The ISchematicInMemoryFeature contained in the schematic diagram</param> ''' <returns>The retrieved ISchematicDiagram</returns> Public Function GetDiagramFromSchematicInMemoryFeature(ByVal schemFeature As ESRI.ArcGIS.Schematic.ISchematicInMemoryFeature) As ESRI.ArcGIS.Schematic.ISchematicDiagram Return schemFeature.SchematicDiagram End Function