// -------------------------------------------------------------------------------------------------------------------- // // Jamie Dixon // // // Defines the static Enums type. // // -------------------------------------------------------------------------------------------------------------------- namespace GraphVizWrapper { public static class Enums { public enum GraphReturnType { Pdf, Jpg, Png, Plain, PlainExt, Svg } public enum RenderingEngine { Dot, // First item in enum is default rendering engine (E[0]) Neato, Twopi, Circo, Fdp, Sfdp, Patchwork, Osage } } }