public Table() : base() { Style = new TableStyle(); Rows = new TableRows(); Rows.ItemsInserted += OnRowsInserted; }
public static TableStyle CreateFromXElement(XElement element) { TableStyle tableStyle = new TableStyle(); tableStyle.PopulateFromXElement(element); return tableStyle; }