Exemplo n.º 1
0
 /// <inheritdoc/>
 public override void Invoke()
 {
     if (Enabled)
     {
         ActiveReportTab.DeletePage();
     }
 }
Exemplo n.º 2
0
 /// <inheritdoc/>
 public override void Invoke()
 {
     using (SelectLanguageForm form = new SelectLanguageForm())
     {
         if (form.ShowDialog() == DialogResult.OK)
         {
             Designer.Plugins.Localize();
             if (ActiveReportTab != null)
             {
                 ActiveReportTab.Localize();
             }
         }
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// Redo several actions.
 /// </summary>
 /// <param name="actionsCount">Number of actions to redo.</param>
 public void Redo(int actionsCount)
 {
     ActiveReportTab.Redo(actionsCount);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Undo several actions.
 /// </summary>
 /// <param name="actionsCount">Number of actions to undo.</param>
 public void Undo(int actionsCount)
 {
     ActiveReportTab.Undo(actionsCount);
 }
Exemplo n.º 5
0
 /// <inheritdoc/>
 public override void Invoke()
 {
     ActiveReportTab.Preview();
 }
Exemplo n.º 6
0
 /// <inheritdoc/>
 public override void Invoke()
 {
     ActiveReportTab.SaveFile(true);
 }
Exemplo n.º 7
0
 /// <inheritdoc/>
 public override void Invoke()
 {
     ActiveReportTab.NewDialog();
 }
Exemplo n.º 8
0
 /// <inheritdoc/>
 public override void Invoke()
 {
     ActiveReportTab.NewReportPage();
 }