public DrawingSheet(PhasesBook ownerBook, string sheetName, Size size, int imageIndex = Constants.ImageIndex.SubSheet) : base(sheetName, size) { OwnerBook = ownerBook; sheetTree = new TreeNode(sheetName, imageIndex, imageIndex); Sketch = new DrawableCollection(this); }
internal DrawStateViewer(PhasesBook book, MouseTool mouse) { this.book = book; this.mouse = mouse; InitializeComponent(); }
internal GlobalSheet(PhasesBook ownerBook, string sheetName, Size size, int imageIndex = Constants.ImageIndex.SubSheet) : base(ownerBook, sheetName, size, imageIndex) { }
internal ModelSheet(PhasesBook ownerBook, string sheetName, Size size) : base(ownerBook, sheetName, size, Constants.ImageIndex.ModelSheet) { Variables = new VariableCollection(this); Globals = new List <IGlobal>(); }