Serializes the item to the specified writer.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
protected virtual void SaveTo ( |
Visual Basic
Copy Code
|
|---|
Protected Overridable Sub SaveTo( _ |
RemarksThis method is invoked when an item is being serialized to a binary-format diagram file.
ExampleThe following example shows how to implement this method in a derived class.
C#
Copy Code
|
|---|
protected override void SaveTo(System.IO.BinaryWriter writer, PersistContext ctx) |
Visual Basic
Copy Code
|
|---|
Protected Overrides Sub SaveTo(ByVal writer As System.IO.BinaryWriter, ByVal ctx As PersistContext) |
See Also