![]() |
This document is archived and information here might be outdated. Recommended version. |
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