public RowSpecificCellProperties(Cell c, bool v, bool s, int ah, Rectangle? b) { this.OriginalCell = c; this.Visible = new bool?(v); this.Selectable = new bool?(s); this.CachedAutoHeight = ah; this.CachedBounds = b; }
public RowSpecificCellProperties(Cell c) { this.OriginalCell = c; this.Visible = null; this.Selectable = null; this.CachedAutoHeight = -1; this.CachedBounds = null; this.Cea = null; }
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; }
public LinkEventArgs(Row r, Cell c, int ri, int ci, int yoff) : base(r, c, ri, ci, yoff) { this.Target = ((LinkCell) base.Cell).GetLink(base.CellData); }
public void Remove(Cell value) { base.List.Remove(value); }
public void Insert(int index, Cell value) { base.List.Insert(index, value); }
public int IndexOf(Cell value) { return base.List.IndexOf(value); }
public bool Contains(Cell value) { return base.List.Contains(value); }
public int Add(Cell value) { return base.List.Add(value); }