Diagram.Diagram

Diagram()

The default constructor.

public Diagram()

See Also


Diagram(string)

Public class constructor, loads the diagram from the file.

public Diagram(string filename)
ParameterTypeDescription
filenameStringThe file name.

See Also


Diagram(Stream)

Public class constructor, loads the diagram from the stream.

public Diagram(Stream stream)
ParameterTypeDescription
streamStreamThe data stream.

See Also


Diagram(string, LoadFileFormat)

Public class constructor, loads the diagram from the file using predefined format.

public Diagram(string filename, LoadFileFormat format)
ParameterTypeDescription
filenameStringThe file name.
formatLoadFileFormatThe file format.

See Also


Diagram(Stream, LoadFileFormat)

Public class constructor, loads the diagram from the stream using predefined format.

public Diagram(Stream stream, LoadFileFormat format)
ParameterTypeDescription
streamStreamThe data stream.
formatLoadFileFormatThe data load file format.

See Also


Diagram(string, LoadOptions)

Public class constructor, loads the diagram from the file using predefined load file options.

public Diagram(string filename, LoadOptions options)
ParameterTypeDescription
filenameStringThe file name.
optionsLoadOptionsThe data load options.

See Also


Diagram(Stream, LoadOptions)

Public class constructor, loads the diagram from the stream using predefined load file options.

public Diagram(Stream stream, LoadOptions options)
ParameterTypeDescription
streamStreamThe data stream.
optionsLoadOptionsThe data load options.

See Also