Provides access to members that control custom editing operations on the network diagram.
Members
Name | Description | |
---|---|---|
FinishSavingLayout | Finishes saving the custom layout on the network diagram. | |
SaveContainerGeometry | Saves the geometry for a diagram container. | |
SaveEdgeGeometry | Saves the geometry for a diagram edge. | |
SaveJunctionGeometry | Saves the geometry and rotation angle for a diagram junction. | |
StartSavingLayout | Starts saving a custom layout on the network diagram. |
INetworkDiagramCustomEdit.FinishSavingLayout Method
Finishes saving the custom layout on the network diagram.
Public Sub FinishSavingLayout ( _
ByVal keepVertices As Boolean _
)
public void FinishSavingLayout (
bool keepVertices
);
INetworkDiagramCustomEdit.SaveContainerGeometry Method
Saves the geometry for a diagram container.
Public Sub SaveContainerGeometry ( _
ByVal DEID As Integer, _
ByVal Geometry As IGeometry _
)
public void SaveContainerGeometry (
int DEID,
IGeometry Geometry
);
INetworkDiagramCustomEdit.SaveEdgeGeometry Method
Saves the geometry for a diagram edge.
Public Sub SaveEdgeGeometry ( _
ByVal DEID As Integer, _
ByVal Geometry As IGeometry _
)
public void SaveEdgeGeometry (
int DEID,
IGeometry Geometry
);
INetworkDiagramCustomEdit.SaveJunctionGeometry Method
Saves the geometry and rotation angle for a diagram junction.
Public Sub SaveJunctionGeometry ( _
ByVal DEID As Integer, _
ByVal Geometry As IGeometry, _
ByVal Rotation As Double _
)
public void SaveJunctionGeometry (
int DEID,
IGeometry Geometry,
double Rotation
);
INetworkDiagramCustomEdit.StartSavingLayout Method
Starts saving a custom layout on the network diagram.
Public Sub StartSavingLayout ( _
)
public void StartSavingLayout (
);
Classes that implement INetworkDiagramCustomEdit
Classes | Description |
---|