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

            return tableStyle;
        }