public DrawingSurface(SurfaceTarget target) { this.Target = target; }
public DrawingSurface(IVisio.Page page) { this.Target = new SurfaceTarget(page); }
public ShapeSheetSurface(IVisio.Shape shape) { this.Target = new SurfaceTarget(shape); }
public void Commit(IVisio.Page page, VisioAutomation.ShapeSheet.CellValueType type) { var surface = new SurfaceTarget(page); this.Commit(surface, type); }
public SectionsQueryOutput <string> GetFormulas(Microsoft.Office.Interop.Visio.Shape shape) { var surface = new SurfaceTarget(shape); return(GetFormulas(surface)); }
public ShapeSheetSurface(IVisio.Master master) { this.Target = new SurfaceTarget(master); }
public void CommitResults(IVisio.Page page) { var surface = new SurfaceTarget(page); this._commit_results(surface); }
public DrawingSurface(IVisio.Master master) { this.Target = new SurfaceTarget(master); }
public void CommitFormulas(IVisio.Page page) { var surface = new SurfaceTarget(page); this._commit_formulas(surface); }
public void CommitResults(IVisio.Shape shape) { var surface = new SurfaceTarget(shape); this._commit_results(surface); }
public void CommitFormulas(IVisio.Shape shape) { var surface = new SurfaceTarget(shape); this._commit_formulas(surface); }
public SectionsQueryOutputList <string> GetFormulas(Microsoft.Office.Interop.Visio.Page page, IList <int> shapeids) { var surface = new SurfaceTarget(page); return(this.GetFormulas(surface, shapeids)); }
public SectionsQueryOutput <TResult> GetResults <TResult>(Microsoft.Office.Interop.Visio.Shape shape) { var surface = new SurfaceTarget(shape); return(GetResults <TResult>(surface)); }
public ShapeSheetSurface(SurfaceTarget target) { this.Target = target; }
public ShapeSheetSurface(IVisio.Page page) { this.Target = new SurfaceTarget(page); }
public DrawingSurface(IVisio.Shape shape) { this.Target = new SurfaceTarget(shape); }
public SectionsQueryOutputList <TResult> GetResults <TResult>(Microsoft.Office.Interop.Visio.Page page, IList <int> shapeids) { var surface = new SurfaceTarget(page); return(this.GetResults <TResult>(surface, shapeids)); }