Example #1
0
 public MRow(MTable matrix, Node node, int index)
 {
     this.isLabeled = false;
     this.index = 0;
     this.align = RowAlign.UNKNOWN;
     this.spacing = "0.5ex";
     this.lines = TableLineStyle.NONE;
     this.index = index;
     this.attrs = AttributeBuilder.MRowAttributes(node);
     this.colAligns = new HAlign[] { HAlign.UNKNOWN };
     this.matrix = matrix;
     this.node = node;
     this.cells = new ArrayList();
 }
Example #2
0
 //
 public bool ApplyMatrixProperties (MTable Matrix)
 {
     try
     {
         this.OnInsert (false);
         Matrix.ApplyAttrs ();
     }
     catch
     {
     }
     return true;
 }