コード例 #1
0
 public DrawingSurface(SurfaceTarget target)
 {
     this.Target = target;
 }
コード例 #2
0
 public DrawingSurface(IVisio.Page page)
 {
     this.Target = new SurfaceTarget(page);
 }
コード例 #3
0
 public ShapeSheetSurface(IVisio.Shape shape)
 {
     this.Target = new SurfaceTarget(shape);
 }
コード例 #4
0
        public void Commit(IVisio.Page page, VisioAutomation.ShapeSheet.CellValueType type)
        {
            var surface = new SurfaceTarget(page);

            this.Commit(surface, type);
        }
コード例 #5
0
        public SectionsQueryOutput <string> GetFormulas(Microsoft.Office.Interop.Visio.Shape shape)
        {
            var surface = new SurfaceTarget(shape);

            return(GetFormulas(surface));
        }
コード例 #6
0
 public ShapeSheetSurface(IVisio.Master master)
 {
     this.Target = new SurfaceTarget(master);
 }
コード例 #7
0
        public void CommitResults(IVisio.Page page)
        {
            var surface = new SurfaceTarget(page);

            this._commit_results(surface);
        }
コード例 #8
0
 public DrawingSurface(IVisio.Master master)
 {
     this.Target = new SurfaceTarget(master);
 }
コード例 #9
0
        public void CommitFormulas(IVisio.Page page)
        {
            var surface = new SurfaceTarget(page);

            this._commit_formulas(surface);
        }
コード例 #10
0
        public void CommitResults(IVisio.Shape shape)
        {
            var surface = new SurfaceTarget(shape);

            this._commit_results(surface);
        }
コード例 #11
0
        public void CommitFormulas(IVisio.Shape shape)
        {
            var surface = new SurfaceTarget(shape);

            this._commit_formulas(surface);
        }
コード例 #12
0
        public SectionsQueryOutputList <string> GetFormulas(Microsoft.Office.Interop.Visio.Page page, IList <int> shapeids)
        {
            var surface = new SurfaceTarget(page);

            return(this.GetFormulas(surface, shapeids));
        }
コード例 #13
0
        public SectionsQueryOutput <TResult> GetResults <TResult>(Microsoft.Office.Interop.Visio.Shape shape)
        {
            var surface = new SurfaceTarget(shape);

            return(GetResults <TResult>(surface));
        }
コード例 #14
0
 public DrawingSurface(SurfaceTarget target)
 {
     this.Target = target;
 }
コード例 #15
0
 public ShapeSheetSurface(SurfaceTarget target)
 {
     this.Target = target;
 }
コード例 #16
0
 public DrawingSurface(IVisio.Page page)
 {
  this.Target = new SurfaceTarget(page);
 }
コード例 #17
0
 public ShapeSheetSurface(IVisio.Page page)
 {
     this.Target = new SurfaceTarget(page);
 }
コード例 #18
0
 public DrawingSurface(IVisio.Shape shape)
 {
     this.Target = new SurfaceTarget(shape);
 }
コード例 #19
0
        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));
        }