Esempio n. 1
0
 public SIDSRC(
     short id,
     IVisio.VisSectionIndices section,
     IVisio.VisRowIndices row,
     IVisio.VisCellIndices cell) : this(id, (short)section, (short)row, (short)cell)
 {
 }
Esempio n. 2
0
 public Src(
     IVisio.VisSectionIndices section,
     IVisio.VisRowIndices row,
     IVisio.VisCellIndices cell)
     : this((short)section, (short)row, (short)cell)
 {
 }
Esempio n. 3
0
        internal static SRCFromCellIndex GetSRCFactory(IVisio.VisSectionIndices sec, IVisio.VisRowIndices row)
        {
            SRCFromCellIndex new_func = (IVisio.VisCellIndices cell) => new VA.ShapeSheet.SRC(sec, row, cell);

            return(new_func);
        }
Esempio n. 4
0
        internal static SRCFromCellIndex GetSRCFactory(IVisio.VisSectionIndices sec, IVisio.VisRowIndices row)
        {
            SRCFromCellIndex new_func = cell => new SRC(sec, row, cell);

            return(new_func);
        }