public ItemSpecificCellProperties(Cell c, bool v, int ah, Rectangle? b)
 {
     this.OriginalCell = c;
     this.Visible = new bool?(v);
     this.CachedAutoHeight = ah;
     this.CachedBounds = b;
 }
 public ItemSpecificCellProperties(Cell c)
 {
     this.OriginalCell = c;
     this.Visible = null;
     this.CachedAutoHeight = -1;
     this.CachedBounds = null;
     this.Cea = null;
 }
Exemple #3
0
 public Cell(Cell cell)
 {
     this.m_anchor = AnchorStyles.Left | AnchorStyles.Top;
     this.m_bVisible = true;
     this.m_sName = "";
     this.Changed = null;
     this.m_anchor = cell.m_anchor;
     this.m_BackColor = cell.m_BackColor;
     this.m_ForeColor = cell.m_ForeColor;
     this.m_Bounds = cell.m_Bounds;
     this.m_cellSource = cell.m_cellSource.Copy();
     this.m_Border = cell.m_Border;
     this.m_CustomizeCell = cell.m_CustomizeCell;
     this.Name = cell.Name;
     this.m_IsAutoHeight = cell.m_IsAutoHeight;
     this.m_bSelectable = cell.m_bSelectable;
     this.m_bVisible = cell.m_bVisible;
     this.m_scale = cell.m_scale;
 }
Exemple #4
0
 public LinkEventArgs(ListItem item, Cell c, int ri, int ci, int yoff)
     : base(item, c, ri, ci, yoff)
 {
     this.Target = ((LinkCell) base.Cell).GetLink(base.CellData);
 }
Exemple #5
0
 public void Remove(Cell value)
 {
     base.List.Remove(value);
 }
Exemple #6
0
 public void Insert(int index, Cell value)
 {
     base.List.Insert(index, value);
 }
Exemple #7
0
 public int IndexOf(Cell value)
 {
     return base.List.IndexOf(value);
 }
Exemple #8
0
 public bool Contains(Cell value)
 {
     return base.List.Contains(value);
 }
Exemple #9
0
 public int Add(Cell value)
 {
     return base.List.Add(value);
 }