Esempio n. 1
0
 private static void PreviewInsertTable(RowColumnCount parameter)
 {
     UserControlWord wordControl = WordControl;
     if (wordControl != null)
     {
         wordControl.PreviewInsertTable(parameter);
     }
 }
 internal void PreviewInsertTable(RowColumnCount parameter)
 {
     if (parameter != null)
     {
         _previousTable = CreateTable(parameter.RowCount, parameter.ColumnCount);
         flowDoc.Blocks.Add(_previousTable);
     }
 }
Esempio n. 3
0
        private static bool CanInsertTable(RowColumnCount parameter)
        {
            UserControlWord wordControl = WordControl;
            if (wordControl != null)
            {
                return wordControl.CanInsertTable();
            }

            return false;
        }