This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ESRI.ArcGIS.Snippets > Snippets > Get The SchematicInMemoryDiagram Related To An In-Memory Schematic Feature Snippet (ArcObjects .NET 10.4 SDK) |
Retrieve the in-memory schematic diagram related to an in-memory schematic feature
/// <summary> /// Retrieve the in-memory schematic diagram related to an in-memory schematic feature /// </summary> /// <param name="schemFeature">The ISchematicInMemoryFeature contained in the in-memory schematic diagram</param> /// <returns>The retrieved ISchematicInMemoryDiagram</returns> public ESRI.ArcGIS.ISchematicInMemoryDiagram GetInMemoryDiagramFromSchematicInMemoryFeature(ESRI.ArcGIS.Schematic.ISchematicInMemoryFeature schemFeature) { return schemFeature.SchematicInMemoryDiagram; }
''' <summary> ''' Retrieve the in-memory schematic diagram related to an in-memory schematic feature ''' </summary> ''' <param name="schemFeature">The ISchematicInMemoryFeature contained in the in-memory schematic diagram</param> ''' <returns>The retrieved ISchematicInMemoryDiagram</returns> Public Function GetInMemoryDiagramFromSchematicInMemoryFeature(ByVal schemFeature As ESRI.ArcGIS.Schematic.ISchematicInMemoryFeature) As ESRI.ArcGIS.Schematic.ISchematicInMemoryDiagram Return schemFeature.SchematicInMemoryDiagram End Function