imbSCI.Graph.MXGraph.io Namespace |
| Class | Description | |
|---|---|---|
| mxCellCodec |
Codec for mxCells. This class is created and registered
dynamically at load time and used implicitely via mxCodec
and the mxCodecRegistry.
| |
| mxCodec |
XML codec for .NET object graphs. In order to resolve forward references
when reading files the XML document that contains the data must be passed
to the constructor. Here is an example for parsing an existing XML document
into a graph model:
mxCodec codec = new mxCodec(doc);
mxGraph graph = new mxGraph();
codec.Decode(doc.DocumentElement, graph.Model);
| |
| mxCodecRegistry |
Static class that acts as a global registry for codecs. See mxCodec for
an example of using this class.
| |
| mxModelCodec |
Codec for mxGraphModels. This class is created and registered
dynamically at load time and used implicitely via mxCodec
and the mxCodecRegistry.
| |
| mxObjectCodec |
Generic codec for C# objects. See below for a detailed description of
the encoding/decoding scheme.
Note: Since booleans are numbers in JavaScript, all boolean values are
encoded into 1 for true and 0 for false.
| |
| mxStylesheetCodec |
Codec for mxStylesheets. This class is created and registered
dynamically at load time and used implicitely via mxCodec
and the mxCodecRegistry.
|