Mini Kabibi Habibi
using System;
using System.Collections.Generic;
using System.Data.OleDb;
using System.Windows.Forms;
using DevExpress.DXperience.Demos;
using DevExpress.Snap.Core.API;
using DevExpress.Utils;
using SnapDemos.nwindDataSetTableAdapters;
using DevExpress.XtraBars.Ribbon;
using System.IO;
using DevExpress.XtraRichEdit.UI;
using DevExpress.Snap.Extensions.UI;
namespace SnapDemos.Modules {
public partial class Events : TutorialControlBase {
public Events() {
InitializeComponent();
string path = FilesHelper.FindingFileName(AppDomain.CurrentDomain.BaseDirectory, string.Format(@"Data\{0}.snx", "Events"), false);
if(File.Exists(path))
this.snapControl1.Document.LoadDocument(path, SnapDocumentFormat.Snap);
snapControl1.Document.DataSource = GetDataSource();
SubscribEvents();
}
void SubscribEvents() {
snapControl1.Document.PrepareSnList += OnPrepareSnList;
snapControl1.Document.PrepareSnListColumns += OnPrepareSnListColumns;
snapControl1.Document.PrepareSnListDetail += OnPrepareSnListDetail;
}
protected override void OnVisibleChanged(EventArgs e) {
base.OnVisibleChanged(e);
if(Visible)
MergeRibbon();
else
UnMergeRibbon();
}
void MergeRibbon() {
if(ParentFormMain == null)
return;
DevExpress.XtraBars.Ribbon.RibbonControl parentRibbon = ParentFormMain.Ribbon;
parentRibbon.Pages[0].Text = "Demo";
parentRibbon.MergeRibbon(this.ribbonControl1);
parentRibbon.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.ShowOnMultiplePages;
parentRibbon.ShowCustomizationMenu += OnShowCustomizationMenu;
}
void OnShowCustomizationMenu(object sender, RibbonCustomizationMenuEventArgs e) {
bool isTableGallery = e.Link.Item is GalleryChangeTableStyleItem;
if (isTableGallery)
galleryChangeTableStyleItem1.OnShowCustomizationMenu(sender, e);
bool isTableCellGallery = e.Link.Item is GalleryChangeTableCellStyleItem;
if (isTableCellGallery)
galleryChangeTableCellStyleItem1.OnShowCustomizationMenu(sender, e);
}
void UnMergeRibbon() {
if(ParentFormMain == null)
return;
DevExpress.XtraBars.Ribbon.RibbonControl parentRibbon = ParentFormMain.Ribbon;
parentRibbon.UnMergeRibbon();
parentRibbon.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
parentRibbon.ShowCustomizationMenu -= OnShowCustomizationMenu;
}
object GetDataSource() {
string path = FilesHelper.FindingFileName(AppDomain.CurrentDomain.BaseDirectory, @"Data\nwind.mdb", false);
var dataSource = new nwindDataSet();
var connection = new OleDbConnection();
connection.ConnectionString = string.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0}", path);
CategoriesTableAdapter categories = new CategoriesTableAdapter();
categories.Connection = connection;
categories.Fill(dataSource.Categories);
ProductsTableAdapter products = new ProductsTableAdapter();
products.Connection = connection;
products.Fill(dataSource.Products);
Order_DetailsTableAdapter orderDetails = new Order_DetailsTableAdapter();
orderDetails.Connection = connection;
orderDetails.Fill(dataSource.Order_Details);
var bindingSource = new BindingSource();
bindingSource.DataSource = dataSource;
bindingSource.DataMember = "Categories";
return bindingSource;
}
void InitializeComponent() {
this.components = new System.ComponentModel.Container();
DevExpress.XtraBars.Ribbon.ReduceOperation reduceOperation1 = new DevExpress.XtraBars.Ribbon.ReduceOperation();
DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Events));
DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
DevExpress.XtraRichEdit.Model.BorderInfo borderInfo1 = new DevExpress.XtraRichEdit.Model.BorderInfo();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn chartControlCommandGalleryItemGroup2DColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DColumn();
DevExpress.XtraCharts.UI.CreateBarChartItem createBarChartItem1 = new DevExpress.XtraCharts.UI.CreateBarChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem createFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedBarChartItem();
DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem createSideBySideFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBarChartItem();
DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem createSideBySideStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBarChartItem();
DevExpress.XtraCharts.UI.CreateStackedBarChartItem createStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedBarChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn chartControlCommandGalleryItemGroup3DColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DColumn();
DevExpress.XtraCharts.UI.CreateBar3DChartItem createBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateBar3DChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem createFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateManhattanBarChartItem createManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateManhattanBarChartItem();
DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem createSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem createSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem createStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedBar3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn chartControlCommandGalleryItemGroupCylinderColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupCylinderColumn();
DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem createCylinderBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderBar3DChartItem();
DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem createCylinderFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem createCylinderManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderManhattanBarChartItem();
DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem createCylinderSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem createCylinderSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderSideBySideStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem createCylinderStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateCylinderStackedBar3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn chartControlCommandGalleryItemGroupConeColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupConeColumn();
DevExpress.XtraCharts.UI.CreateConeBar3DChartItem createConeBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeBar3DChartItem();
DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem createConeFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem createConeManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreateConeManhattanBarChartItem();
DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem createConeSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeSideBySideFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem createConeSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeSideBySideStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem createConeStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreateConeStackedBar3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn chartControlCommandGalleryItemGroupPyramidColumn1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPyramidColumn();
DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem createPyramidBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidBar3DChartItem();
DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem createPyramidFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem createPyramidManhattanBarChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidManhattanBarChartItem();
DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem createPyramidSideBySideFullStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideFullStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem createPyramidSideBySideStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidSideBySideStackedBar3DChartItem();
DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem createPyramidStackedBar3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePyramidStackedBar3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine chartControlCommandGalleryItemGroup2DLine1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DLine();
DevExpress.XtraCharts.UI.CreateLineChartItem createLineChartItem1 = new DevExpress.XtraCharts.UI.CreateLineChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem createFullStackedLineChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedLineChartItem();
DevExpress.XtraCharts.UI.CreateScatterLineChartItem createScatterLineChartItem1 = new DevExpress.XtraCharts.UI.CreateScatterLineChartItem();
DevExpress.XtraCharts.UI.CreateSplineChartItem createSplineChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineChartItem();
DevExpress.XtraCharts.UI.CreateStackedLineChartItem createStackedLineChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedLineChartItem();
DevExpress.XtraCharts.UI.CreateStepLineChartItem createStepLineChartItem1 = new DevExpress.XtraCharts.UI.CreateStepLineChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine chartControlCommandGalleryItemGroup3DLine1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DLine();
DevExpress.XtraCharts.UI.CreateLine3DChartItem createLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateLine3DChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem createFullStackedLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedLine3DChartItem();
DevExpress.XtraCharts.UI.CreateSpline3DChartItem createSpline3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSpline3DChartItem();
DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem createStackedLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedLine3DChartItem();
DevExpress.XtraCharts.UI.CreateStepLine3DChartItem createStepLine3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStepLine3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie chartControlCommandGalleryItemGroup2DPie1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DPie();
DevExpress.XtraCharts.UI.CreatePieChartItem createPieChartItem1 = new DevExpress.XtraCharts.UI.CreatePieChartItem();
DevExpress.XtraCharts.UI.CreateDoughnutChartItem createDoughnutChartItem1 = new DevExpress.XtraCharts.UI.CreateDoughnutChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie chartControlCommandGalleryItemGroup3DPie1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DPie();
DevExpress.XtraCharts.UI.CreatePie3DChartItem createPie3DChartItem1 = new DevExpress.XtraCharts.UI.CreatePie3DChartItem();
DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem createDoughnut3DChartItem1 = new DevExpress.XtraCharts.UI.CreateDoughnut3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar chartControlCommandGalleryItemGroup2DBar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DBar();
DevExpress.XtraCharts.UI.CreateRotatedBarChartItem createRotatedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedBarChartItem();
DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem createRotatedFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedFullStackedBarChartItem();
DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem createRotatedSideBySideFullStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideFullStackedBarChartItem();
DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem createRotatedSideBySideStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedSideBySideStackedBarChartItem();
DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem createRotatedStackedBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRotatedStackedBarChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea chartControlCommandGalleryItemGroup2DArea1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup2DArea();
DevExpress.XtraCharts.UI.CreateAreaChartItem createAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateAreaChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem createFullStackedAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedAreaChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem createFullStackedSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineAreaChartItem();
DevExpress.XtraCharts.UI.CreateSplineAreaChartItem createSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineAreaChartItem();
DevExpress.XtraCharts.UI.CreateStackedAreaChartItem createStackedAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedAreaChartItem();
DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem createStackedSplineAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedSplineAreaChartItem();
DevExpress.XtraCharts.UI.CreateStepAreaChartItem createStepAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateStepAreaChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea chartControlCommandGalleryItemGroup3DArea1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroup3DArea();
DevExpress.XtraCharts.UI.CreateArea3DChartItem createArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateArea3DChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem createFullStackedArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedArea3DChartItem();
DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem createFullStackedSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFullStackedSplineArea3DChartItem();
DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem createSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateSplineArea3DChartItem();
DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem createStackedArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedArea3DChartItem();
DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem createStackedSplineArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStackedSplineArea3DChartItem();
DevExpress.XtraCharts.UI.CreateStepArea3DChartItem createStepArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateStepArea3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint chartControlCommandGalleryItemGroupPoint1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPoint();
DevExpress.XtraCharts.UI.CreatePointChartItem createPointChartItem1 = new DevExpress.XtraCharts.UI.CreatePointChartItem();
DevExpress.XtraCharts.UI.CreateBubbleChartItem createBubbleChartItem1 = new DevExpress.XtraCharts.UI.CreateBubbleChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel chartControlCommandGalleryItemGroupFunnel1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFunnel();
DevExpress.XtraCharts.UI.CreateFunnelChartItem createFunnelChartItem1 = new DevExpress.XtraCharts.UI.CreateFunnelChartItem();
DevExpress.XtraCharts.UI.CreateFunnel3DChartItem createFunnel3DChartItem1 = new DevExpress.XtraCharts.UI.CreateFunnel3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial chartControlCommandGalleryItemGroupFinancial1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupFinancial();
DevExpress.XtraCharts.UI.CreateStockChartItem createStockChartItem1 = new DevExpress.XtraCharts.UI.CreateStockChartItem();
DevExpress.XtraCharts.UI.CreateCandleStickChartItem createCandleStickChartItem1 = new DevExpress.XtraCharts.UI.CreateCandleStickChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar chartControlCommandGalleryItemGroupRadar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRadar();
DevExpress.XtraCharts.UI.CreateRadarPointChartItem createRadarPointChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarPointChartItem();
DevExpress.XtraCharts.UI.CreateRadarLineChartItem createRadarLineChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarLineChartItem();
DevExpress.XtraCharts.UI.CreateRadarAreaChartItem createRadarAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateRadarAreaChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar chartControlCommandGalleryItemGroupPolar1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupPolar();
DevExpress.XtraCharts.UI.CreatePolarPointChartItem createPolarPointChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarPointChartItem();
DevExpress.XtraCharts.UI.CreatePolarLineChartItem createPolarLineChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarLineChartItem();
DevExpress.XtraCharts.UI.CreatePolarAreaChartItem createPolarAreaChartItem1 = new DevExpress.XtraCharts.UI.CreatePolarAreaChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange chartControlCommandGalleryItemGroupRange1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupRange();
DevExpress.XtraCharts.UI.CreateRangeBarChartItem createRangeBarChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeBarChartItem();
DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem createSideBySideRangeBarChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideRangeBarChartItem();
DevExpress.XtraCharts.UI.CreateRangeAreaChartItem createRangeAreaChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeAreaChartItem();
DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem createRangeArea3DChartItem1 = new DevExpress.XtraCharts.UI.CreateRangeArea3DChartItem();
DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt chartControlCommandGalleryItemGroupGantt1 = new DevExpress.XtraCharts.UI.ChartControlCommandGalleryItemGroupGantt();
DevExpress.XtraCharts.UI.CreateGanttChartItem createGanttChartItem1 = new DevExpress.XtraCharts.UI.CreateGanttChartItem();
DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem createSideBySideGanttChartItem1 = new DevExpress.XtraCharts.UI.CreateSideBySideGanttChartItem();
this.snapControl1 = new DevExpress.Snap.SnapControl();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.chkAfterDetail = new System.Windows.Forms.CheckBox();
this.chkPrepareDetail = new System.Windows.Forms.CheckBox();
this.chkBeforeDetail = new System.Windows.Forms.CheckBox();
this.chkBeforeColumns = new System.Windows.Forms.CheckBox();
this.chkBeforeList = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.chkAfterColumns = new System.Windows.Forms.CheckBox();
this.chkAfterList = new System.Windows.Forms.CheckBox();
this.chkPrepareColumns = new System.Windows.Forms.CheckBox();
this.chkPrepareList = new System.Windows.Forms.CheckBox();
this.snapDockManager1 = new DevExpress.Snap.Extensions.SnapDockManager(this.components);
this.panelContainer1 = new DevExpress.XtraBars.Docking.DockPanel();
this.fieldListDockPanel1 = new DevExpress.Snap.Extensions.UI.FieldListDockPanel();
this.fieldListDockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
this.reportExplorerDockPanel1 = new DevExpress.Snap.Extensions.UI.ReportExplorerDockPanel();
this.reportExplorerDockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
this.snapDocumentManager1 = new DevExpress.Snap.Extensions.SnapDocumentManager(this.components);
this.noDocumentsView1 = new DevExpress.XtraBars.Docking2010.Views.NoDocuments.NoDocumentsView(this.components);
this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
this.snapBarController1 = new DevExpress.Snap.Extensions.SnapBarController();
this.commonRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CommonRibbonPageGroup();
this.fileRibbonPage1 = new DevExpress.XtraRichEdit.UI.FileRibbonPage();
this.fileNewItem1 = new DevExpress.XtraRichEdit.UI.FileNewItem();
this.fileOpenItem1 = new DevExpress.XtraRichEdit.UI.FileOpenItem();
this.fileSaveItem1 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
this.fileSaveAsItem1 = new DevExpress.XtraRichEdit.UI.FileSaveAsItem();
this.commandBarItem1 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.quickPrintItem1 = new DevExpress.XtraRichEdit.UI.QuickPrintItem();
this.printItem1 = new DevExpress.XtraRichEdit.UI.PrintItem();
this.printPreviewItem1 = new DevExpress.XtraRichEdit.UI.PrintPreviewItem();
this.undoItem1 = new DevExpress.XtraRichEdit.UI.UndoItem();
this.redoItem1 = new DevExpress.XtraRichEdit.UI.RedoItem();
this.dataRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.DataRibbonPageGroup();
this.commandBarItem2 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.clipboardRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ClipboardRibbonPageGroup();
this.homeRibbonPage1 = new DevExpress.XtraRichEdit.UI.HomeRibbonPage();
this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
this.fontRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.FontRibbonPageGroup();
this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
this.toggleFontSuperscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSuperscriptItem();
this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
this.barButtonGroup3 = new DevExpress.XtraBars.BarButtonGroup();
this.paragraphRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ParagraphRibbonPageGroup();
this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
this.changeParagraphBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphBackColorItem();
this.barButtonGroup4 = new DevExpress.XtraBars.BarButtonGroup();
this.barButtonGroup5 = new DevExpress.XtraBars.BarButtonGroup();
this.barButtonGroup6 = new DevExpress.XtraBars.BarButtonGroup();
this.barButtonGroup7 = new DevExpress.XtraBars.BarButtonGroup();
this.stylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.StylesRibbonPageGroup();
this.galleryChangeStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeStyleItem();
this.editingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.EditingRibbonPageGroup();
this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
this.pagesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PagesRibbonPageGroup();
this.insertRibbonPage1 = new DevExpress.XtraRichEdit.UI.InsertRibbonPage();
this.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
this.tablesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TablesRibbonPageGroup();
this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
this.illustrationsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.IllustrationsRibbonPageGroup();
this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
this.insertFloatingPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertFloatingPictureItem();
this.toolboxRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ToolboxRibbonPageGroup();
this.commandBarItem3 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarItem4 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarItem5 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.linksRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.LinksRibbonPageGroup();
this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
this.headerFooterRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterRibbonPageGroup();
this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
this.textRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TextRibbonPageGroup();
this.insertTextBoxItem1 = new DevExpress.XtraRichEdit.UI.InsertTextBoxItem();
this.symbolsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.SymbolsRibbonPageGroup();
this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
this.pageSetupRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageSetupRibbonPageGroup();
this.pageLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.PageLayoutRibbonPage();
this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
this.showPageMarginsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowPageMarginsSetupFormItem();
this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
this.changeSectionPaperKindItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPaperKindItem();
this.changeSectionColumnsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionColumnsItem();
this.setSectionOneColumnItem1 = new DevExpress.XtraRichEdit.UI.SetSectionOneColumnItem();
this.setSectionTwoColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionTwoColumnsItem();
this.setSectionThreeColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionThreeColumnsItem();
this.showColumnsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowColumnsSetupFormItem();
this.insertBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertBreakItem();
this.insertPageBreakItem2 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
this.insertColumnBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertColumnBreakItem();
this.insertSectionBreakNextPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakNextPageItem();
this.insertSectionBreakEvenPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakEvenPageItem();
this.insertSectionBreakOddPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakOddPageItem();
this.changeSectionLineNumberingItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionLineNumberingItem();
this.setSectionLineNumberingNoneItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingNoneItem();
this.setSectionLineNumberingContinuousItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingContinuousItem();
this.setSectionLineNumberingRestartNewPageItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewPageItem();
this.setSectionLineNumberingRestartNewSectionItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewSectionItem();
this.toggleParagraphSuppressLineNumbersItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphSuppressLineNumbersItem();
this.showLineNumberingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineNumberingFormItem();
this.pageBackgroundRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.PageBackgroundRibbonPageGroup();
this.changePageColorItem1 = new DevExpress.XtraRichEdit.UI.ChangePageColorItem();
this.documentViewsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentViewsRibbonPageGroup();
this.viewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ViewRibbonPage();
this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
this.showRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ShowRibbonPageGroup();
this.toggleShowHorizontalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowHorizontalRulerItem();
this.toggleShowVerticalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowVerticalRulerItem();
this.zoomRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.ZoomRibbonPageGroup();
this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
this.viewRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ViewRibbonPageGroup();
this.snapBarToolbarsListItem1 = new DevExpress.Snap.Extensions.UI.SnapBarToolbarsListItem();
this.commandBarCheckItem1 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.mailMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.MailMergeRibbonPageGroup();
this.showAllFieldCodesItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldCodesItem();
this.showAllFieldResultsItem1 = new DevExpress.XtraRichEdit.UI.ShowAllFieldResultsItem();
this.toggleFieldHighlightingItem1 = new DevExpress.Snap.Extensions.UI.ToggleFieldHighlightingItem();
this.headerFooterToolsDesignNavigationRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignNavigationRibbonPageGroup();
this.headerFooterToolsDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignRibbonPage();
this.headerFooterToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsRibbonPageCategory();
this.goToPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.GoToPageHeaderItem();
this.goToPageFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPageFooterItem();
this.goToNextHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToNextHeaderFooterItem();
this.goToPreviousHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.GoToPreviousHeaderFooterItem();
this.toggleLinkToPreviousItem1 = new DevExpress.XtraRichEdit.UI.ToggleLinkToPreviousItem();
this.headerFooterToolsDesignOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignOptionsRibbonPageGroup();
this.toggleDifferentFirstPageItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentFirstPageItem();
this.toggleDifferentOddAndEvenPagesItem1 = new DevExpress.XtraRichEdit.UI.ToggleDifferentOddAndEvenPagesItem();
this.headerFooterToolsDesignCloseRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.HeaderFooterToolsDesignCloseRibbonPageGroup();
this.closePageHeaderFooterItem1 = new DevExpress.XtraRichEdit.UI.ClosePageHeaderFooterItem();
this.tableStyleOptionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStyleOptionsRibbonPageGroup();
this.tableDesignRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableDesignRibbonPage();
this.tableToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.TableToolsRibbonPageCategory();
this.toggleFirstRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstRowItem();
this.toggleLastRowItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastRowItem();
this.toggleBandedRowsItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedRowsItem();
this.toggleFirstColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleFirstColumnItem();
this.toggleLastColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleLastColumnItem();
this.toggleBandedColumnItem1 = new DevExpress.XtraRichEdit.UI.ToggleBandedColumnItem();
this.tableStylesRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableStylesRibbonPageGroup();
this.galleryChangeTableStyleItem1 = new DevExpress.XtraRichEdit.UI.GalleryChangeTableStyleItem();
this.tableCellStylesRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.TableCellStylesRibbonPageGroup();
this.galleryChangeTableCellStyleItem1 = new DevExpress.Snap.Extensions.UI.GalleryChangeTableCellStyleItem();
this.tableDrawBordersRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableDrawBordersRibbonPageGroup();
this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
this.tableTableRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableTableRibbonPageGroup();
this.tableLayoutRibbonPage1 = new DevExpress.XtraRichEdit.UI.TableLayoutRibbonPage();
this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
this.tableRowsAndColumnsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableRowsAndColumnsRibbonPageGroup();
this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
this.tableMergeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableMergeRibbonPageGroup();
this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
this.tableCellSizeRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableCellSizeRibbonPageGroup();
this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
this.tableAlignmentRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableAlignmentRibbonPageGroup();
this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
this.showTableOptionsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTableOptionsFormItem();
this.documentProofingRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.DocumentProofingRibbonPageGroup();
this.reviewRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReviewRibbonPage();
this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
this.tableOfContentsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.TableOfContentsRibbonPageGroup();
this.referencesRibbonPage1 = new DevExpress.XtraRichEdit.UI.ReferencesRibbonPage();
this.insertTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfContentsItem();
this.updateTableOfContentsItem1 = new DevExpress.XtraRichEdit.UI.UpdateTableOfContentsItem();
this.addParagraphsToTableOfContentItem1 = new DevExpress.XtraRichEdit.UI.AddParagraphsToTableOfContentItem();
this.setParagraphHeadingLevelItem1 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem2 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem3 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem4 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem5 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem6 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem7 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem8 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem9 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.setParagraphHeadingLevelItem10 = new DevExpress.XtraRichEdit.UI.SetParagraphHeadingLevelItem();
this.captionsRibbonPageGroup1 = new DevExpress.XtraRichEdit.UI.CaptionsRibbonPageGroup();
this.insertCaptionPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertCaptionPlaceholderItem();
this.insertFiguresCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertFiguresCaptionItems();
this.insertTablesCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertTablesCaptionItems();
this.insertEquationsCaptionItems1 = new DevExpress.XtraRichEdit.UI.InsertEquationsCaptionItems();
this.insertTableOfFiguresPlaceholderItem1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresPlaceholderItem();
this.insertTableOfFiguresItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfFiguresItems();
this.insertTableOfTablesItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfTablesItems();
this.insertTableOfEquationsItems1 = new DevExpress.XtraRichEdit.UI.InsertTableOfEquationsItems();
this.floatingPictureToolsShapeStylesPageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsShapeStylesPageGroup();
this.floatingPictureToolsFormatPage1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsFormatPage();
this.floatingPictureToolsRibbonPageCategory1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsRibbonPageCategory();
this.changeFloatingObjectFillColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectFillColorItem();
this.changeFloatingObjectOutlineColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineColorItem();
this.changeFloatingObjectOutlineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectOutlineWeightItem();
this.repositoryItemFloatingObjectOutlineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemFloatingObjectOutlineWeight();
this.floatingPictureToolsArrangePageGroup1 = new DevExpress.XtraRichEdit.UI.FloatingPictureToolsArrangePageGroup();
this.changeFloatingObjectTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectTextWrapTypeItem();
this.setFloatingObjectSquareTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectSquareTextWrapTypeItem();
this.setFloatingObjectTightTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTightTextWrapTypeItem();
this.setFloatingObjectThroughTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectThroughTextWrapTypeItem();
this.setFloatingObjectTopAndBottomTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopAndBottomTextWrapTypeItem();
this.setFloatingObjectBehindTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBehindTextWrapTypeItem();
this.setFloatingObjectInFrontOfTextWrapTypeItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectInFrontOfTextWrapTypeItem();
this.changeFloatingObjectAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ChangeFloatingObjectAlignmentItem();
this.setFloatingObjectTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopLeftAlignmentItem();
this.setFloatingObjectTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopCenterAlignmentItem();
this.setFloatingObjectTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectTopRightAlignmentItem();
this.setFloatingObjectMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleLeftAlignmentItem();
this.setFloatingObjectMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleCenterAlignmentItem();
this.setFloatingObjectMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectMiddleRightAlignmentItem();
this.setFloatingObjectBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomLeftAlignmentItem();
this.setFloatingObjectBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomCenterAlignmentItem();
this.setFloatingObjectBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.SetFloatingObjectBottomRightAlignmentItem();
this.floatingObjectBringForwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardSubItem();
this.floatingObjectBringForwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringForwardItem();
this.floatingObjectBringToFrontItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringToFrontItem();
this.floatingObjectBringInFrontOfTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectBringInFrontOfTextItem();
this.floatingObjectSendBackwardSubItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardSubItem();
this.floatingObjectSendBackwardItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBackwardItem();
this.floatingObjectSendToBackItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendToBackItem();
this.floatingObjectSendBehindTextItem1 = new DevExpress.XtraRichEdit.UI.FloatingObjectSendBehindTextItem();
this.themesRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ThemesRibbonPageGroup();
this.appearanceRibbonPage1 = new DevExpress.Snap.Extensions.UI.AppearanceRibbonPage();
this.dataToolsRibbonPageCategory1 = new DevExpress.Snap.Extensions.UI.DataToolsRibbonPageCategory();
this.themesGalleryBarItem1 = new DevExpress.Snap.Extensions.UI.ThemesGalleryBarItem();
this.dataShapingRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.DataShapingRibbonPageGroup();
this.snMergeFieldToolsRibbonPage1 = new DevExpress.Snap.Extensions.UI.SNMergeFieldToolsRibbonPage();
this.commandBarCheckItem2 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem3 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem4 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarSubItem1 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem5 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem6 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem7 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem8 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem9 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.filterPopupButtonItem1 = new DevExpress.Snap.Extensions.UI.FilterPopupButtonItem();
this.snMergeFieldPropertiesRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.SNMergeFieldPropertiesRibbonPageGroup();
this.propertiesBarButtonItem1 = new DevExpress.Snap.Extensions.UI.PropertiesBarButtonItem();
this.groupingRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.GroupingRibbonPageGroup();
this.groupToolsRibbonPage1 = new DevExpress.Snap.Extensions.UI.GroupToolsRibbonPage();
this.commandBarSubItem2 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem10 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem11 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarSubItem3 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem12 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem13 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarItem6 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarItem7 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarSubItem4 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem14 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem15 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem16 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem17 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem18 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem19 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem20 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.listHeaderAndFooterRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ListHeaderAndFooterRibbonPageGroup();
this.listToolsRibbonPage1 = new DevExpress.Snap.Extensions.UI.ListToolsRibbonPage();
this.commandBarSubItem5 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem21 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem22 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarSubItem6 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem23 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem24 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.listCommandsRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ListCommandsRibbonPageGroup();
this.commandBarItem8 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarItem9 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarItem10 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.commandBarSubItem7 = new DevExpress.Snap.Extensions.UI.CommandBarSubItem();
this.commandBarCheckItem25 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem26 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem27 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem28 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem29 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem30 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarCheckItem31 = new DevExpress.Snap.Extensions.UI.CommandBarCheckItem();
this.commandBarItem11 = new DevExpress.Snap.Extensions.UI.CommandBarItem();
this.listEditorRowLimitRibbonPageGroup1 = new DevExpress.Snap.Extensions.UI.ListEditorRowLimitRibbonPageGroup();
this.changeEditorRowLimitItem1 = new DevExpress.Snap.Extensions.UI.ChangeEditorRowLimitItem();
this.barButtonGroup8 = new DevExpress.XtraBars.BarButtonGroup();
this.repositoryItemEditorRowLimitEdit1 = new DevExpress.Snap.Design.RepositoryItemEditorRowLimitEdit();
this.chartTypeRibbonPageGroup1 = new DevExpress.XtraCharts.UI.ChartTypeRibbonPageGroup();
this.createChartRibbonPage1 = new DevExpress.XtraCharts.UI.CreateChartRibbonPage();
this.chartRibbonPageCategory1 = new DevExpress.XtraCharts.UI.ChartRibbonPageCategory();
this.createBarBaseItem1 = new DevExpress.XtraCharts.UI.CreateBarBaseItem();
this.galleryDropDown1 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.createLineBaseItem1 = new DevExpress.XtraCharts.UI.CreateLineBaseItem();
this.galleryDropDown2 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.createPieBaseItem1 = new DevExpress.XtraCharts.UI.CreatePieBaseItem();
this.galleryDropDown3 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.createRotatedBarBaseItem1 = new DevExpress.XtraCharts.UI.CreateRotatedBarBaseItem();
this.galleryDropDown4 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.createAreaBaseItem1 = new DevExpress.XtraCharts.UI.CreateAreaBaseItem();
this.galleryDropDown5 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.createOtherSeriesTypesBaseItem1 = new DevExpress.XtraCharts.UI.CreateOtherSeriesTypesBaseItem();
this.galleryDropDown6 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.chartAppearanceRibbonPageGroup1 = new DevExpress.XtraCharts.UI.ChartAppearanceRibbonPageGroup();
this.changePaletteGalleryBaseItem1 = new DevExpress.XtraCharts.UI.ChangePaletteGalleryBaseItem();
this.galleryDropDown7 = new DevExpress.XtraBars.Ribbon.GalleryDropDown(this.components);
this.changeAppearanceGalleryBaseItem1 = new DevExpress.XtraCharts.UI.ChangeAppearanceGalleryBaseItem();
this.chartWizardRibbonPageGroup1 = new DevExpress.XtraCharts.UI.ChartWizardRibbonPageGroup();
this.runWizardChartItem1 = new DevExpress.XtraCharts.UI.RunWizardChartItem();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.snapDockManager1)).BeginInit();
this.panelContainer1.SuspendLayout();
this.fieldListDockPanel1.SuspendLayout();
this.reportExplorerDockPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.snapDocumentManager1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.noDocumentsView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemEditorRowLimitEdit1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown6)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown7)).BeginInit();
this.SuspendLayout();
//
// snapControl1
//
this.snapControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.snapControl1.Location = new System.Drawing.Point(0, 0);
this.snapControl1.MenuManager = this.ribbonControl1;
this.snapControl1.Name = "snapControl1";
this.snapControl1.Options.Fields.UseCurrentCultureDateTimeFormat = false;
this.snapControl1.Options.MailMerge.KeepLastParagraph = false;
this.snapControl1.Size = new System.Drawing.Size(983, 181);
this.snapControl1.TabIndex = 0;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.splitContainer1.IsSplitterFixed = true;
this.splitContainer1.Location = new System.Drawing.Point(0, 142);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.chkAfterDetail);
this.splitContainer1.Panel1.Controls.Add(this.chkPrepareDetail);
this.splitContainer1.Panel1.Controls.Add(this.chkBeforeDetail);
this.splitContainer1.Panel1.Controls.Add(this.chkBeforeColumns);
this.splitContainer1.Panel1.Controls.Add(this.chkBeforeList);
this.splitContainer1.Panel1.Controls.Add(this.label1);
this.splitContainer1.Panel1.Controls.Add(this.chkAfterColumns);
this.splitContainer1.Panel1.Controls.Add(this.chkAfterList);
this.splitContainer1.Panel1.Controls.Add(this.chkPrepareColumns);
this.splitContainer1.Panel1.Controls.Add(this.chkPrepareList);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.snapControl1);
this.splitContainer1.Size = new System.Drawing.Size(983, 245);
this.splitContainer1.SplitterDistance = 60;
this.splitContainer1.TabIndex = 3;
//
// chkAfterDetail
//
this.chkAfterDetail.AutoSize = true;
this.chkAfterDetail.Location = new System.Drawing.Point(421, 42);
this.chkAfterDetail.Name = "chkAfterDetail";
this.chkAfterDetail.Size = new System.Drawing.Size(135, 17);
this.chkAfterDetail.TabIndex = 10;
this.chkAfterDetail.Text = "AfterInsertSnListDetail";
this.chkAfterDetail.UseVisualStyleBackColor = true;
this.chkAfterDetail.CheckedChanged += new System.EventHandler(this.OnAfterDetailCheckedChanged);
//
// chkPrepareDetail
//
this.chkPrepareDetail.AutoSize = true;
this.chkPrepareDetail.Checked = true;
this.chkPrepareDetail.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkPrepareDetail.Location = new System.Drawing.Point(283, 42);
this.chkPrepareDetail.Name = "chkPrepareDetail";
this.chkPrepareDetail.Size = new System.Drawing.Size(119, 17);
this.chkPrepareDetail.TabIndex = 9;
this.chkPrepareDetail.Text = "PrepareSnListDetail";
this.chkPrepareDetail.UseVisualStyleBackColor = true;
this.chkPrepareDetail.CheckedChanged += new System.EventHandler(this.OnPrepareDetailCheckedChanged);
//
// chkBeforeDetail
//
this.chkBeforeDetail.AutoSize = true;
this.chkBeforeDetail.Location = new System.Drawing.Point(122, 42);
this.chkBeforeDetail.Name = "chkBeforeDetail";
this.chkBeforeDetail.Size = new System.Drawing.Size(142, 17);
this.chkBeforeDetail.TabIndex = 8;
this.chkBeforeDetail.Text = "BeforeInsertSnListDetail";
this.chkBeforeDetail.UseVisualStyleBackColor = true;
this.chkBeforeDetail.CheckedChanged += new System.EventHandler(this.OnBeforeDetailCheckedChanged);
//
// chkBeforeColumns
//
this.chkBeforeColumns.AutoSize = true;
this.chkBeforeColumns.Location = new System.Drawing.Point(122, 23);
this.chkBeforeColumns.Name = "chkBeforeColumns";
this.chkBeforeColumns.Size = new System.Drawing.Size(155, 17);
this.chkBeforeColumns.TabIndex = 7;
this.chkBeforeColumns.Text = "BeforeInsertSnListColumns";
this.chkBeforeColumns.UseVisualStyleBackColor = true;
this.chkBeforeColumns.CheckedChanged += new System.EventHandler(this.OnBeforeColumnsCheckedChanged);
//
// chkBeforeList
//
this.chkBeforeList.AutoSize = true;
this.chkBeforeList.Location = new System.Drawing.Point(122, 4);
this.chkBeforeList.Name = "chkBeforeList";
this.chkBeforeList.Size = new System.Drawing.Size(115, 17);
this.chkBeforeList.TabIndex = 6;
this.chkBeforeList.Text = "BeforeInsertSnList";
this.chkBeforeList.UseVisualStyleBackColor = true;
this.chkBeforeList.CheckedChanged += new System.EventHandler(this.OnBeforeListCheckedChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(12, 5);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(104, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Events to handle:";
//
// chkAfterColumns
//
this.chkAfterColumns.AutoSize = true;
this.chkAfterColumns.Location = new System.Drawing.Point(421, 23);
this.chkAfterColumns.Name = "chkAfterColumns";
this.chkAfterColumns.Size = new System.Drawing.Size(148, 17);
this.chkAfterColumns.TabIndex = 4;
this.chkAfterColumns.Text = "AfterInsertSnListColumns";
this.chkAfterColumns.UseVisualStyleBackColor = true;
this.chkAfterColumns.CheckedChanged += new System.EventHandler(this.OnAfterColumnsCheckedChanged);
//
// chkAfterList
//
this.chkAfterList.AutoSize = true;
this.chkAfterList.Location = new System.Drawing.Point(421, 4);
this.chkAfterList.Name = "chkAfterList";
this.chkAfterList.Size = new System.Drawing.Size(108, 17);
this.chkAfterList.TabIndex = 3;
this.chkAfterList.Text = "AfterInsertSnList";
this.chkAfterList.UseVisualStyleBackColor = true;
this.chkAfterList.CheckedChanged += new System.EventHandler(this.OnAfterListCheckedChanged);
//
// chkPrepareColumns
//
this.chkPrepareColumns.AutoSize = true;
this.chkPrepareColumns.Checked = true;
this.chkPrepareColumns.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkPrepareColumns.Location = new System.Drawing.Point(283, 23);
this.chkPrepareColumns.Name = "chkPrepareColumns";
this.chkPrepareColumns.Size = new System.Drawing.Size(132, 17);
this.chkPrepareColumns.TabIndex = 2;
this.chkPrepareColumns.Text = "PrepareSnListColumns";
this.chkPrepareColumns.UseVisualStyleBackColor = true;
this.chkPrepareColumns.CheckedChanged += new System.EventHandler(this.OnPrepareColumnsCheckedChanged);
//
// chkPrepareList
//
this.chkPrepareList.AutoSize = true;
this.chkPrepareList.Checked = true;
this.chkPrepareList.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkPrepareList.Location = new System.Drawing.Point(283, 4);
this.chkPrepareList.Name = "chkPrepareList";
this.chkPrepareList.Size = new System.Drawing.Size(92, 17);
this.chkPrepareList.TabIndex = 1;
this.chkPrepareList.Text = "PrepareSnList";
this.chkPrepareList.UseVisualStyleBackColor = true;
this.chkPrepareList.CheckedChanged += new System.EventHandler(this.OnPrepareListCheckedChanged);
//
// snapDockManager1
//
this.snapDockManager1.Form = this;
this.snapDockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
this.panelContainer1});
this.snapDockManager1.SnapControl = this.snapControl1;
this.snapDockManager1.TopZIndexControls.AddRange(new string[] {
"DevExpress.XtraBars.BarDockControl",
"DevExpress.XtraBars.StandaloneBarDockControl",
"System.Windows.Forms.StatusBar",
"System.Windows.Forms.MenuStrip",
"System.Windows.Forms.StatusStrip",
"DevExpress.XtraBars.Ribbon.RibbonStatusBar",
"DevExpress.XtraBars.Ribbon.RibbonControl"});
//
// panelContainer1
//
this.panelContainer1.Controls.Add(this.fieldListDockPanel1);
this.panelContainer1.Controls.Add(this.reportExplorerDockPanel1);
this.panelContainer1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Right;
this.panelContainer1.ID = new System.Guid("bde9a6c9-c026-4acb-be56-8a00dbd8a3e8");
this.panelContainer1.Location = new System.Drawing.Point(983, 142);
this.panelContainer1.Name = "panelContainer1";
this.panelContainer1.OriginalSize = new System.Drawing.Size(200, 200);
this.panelContainer1.Size = new System.Drawing.Size(200, 245);
this.panelContainer1.Text = "panelContainer1";
//
// fieldListDockPanel1
//
this.fieldListDockPanel1.Controls.Add(this.fieldListDockPanel1_Container);
this.fieldListDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
this.fieldListDockPanel1.ID = new System.Guid("f231f640-4271-4eae-8694-ae341bb267fa");
this.fieldListDockPanel1.Location = new System.Drawing.Point(0, 0);
this.fieldListDockPanel1.Name = "fieldListDockPanel1";
this.fieldListDockPanel1.OriginalSize = new System.Drawing.Size(200, 122);
this.fieldListDockPanel1.Size = new System.Drawing.Size(200, 122);
this.fieldListDockPanel1.SnapControl = this.snapControl1;
this.fieldListDockPanel1.Text = "Data Explorer";
//
// fieldListDockPanel1_Container
//
this.fieldListDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
this.fieldListDockPanel1_Container.Name = "fieldListDockPanel1_Container";
this.fieldListDockPanel1_Container.Size = new System.Drawing.Size(192, 95);
this.fieldListDockPanel1_Container.TabIndex = 0;
//
// reportExplorerDockPanel1
//
this.reportExplorerDockPanel1.Controls.Add(this.reportExplorerDockPanel1_Container);
this.reportExplorerDockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Fill;
this.reportExplorerDockPanel1.ID = new System.Guid("9ef843e5-3e39-464d-8642-0337fdc74153");
this.reportExplorerDockPanel1.Location = new System.Drawing.Point(0, 122);
this.reportExplorerDockPanel1.Name = "reportExplorerDockPanel1";
this.reportExplorerDockPanel1.OriginalSize = new System.Drawing.Size(200, 123);
this.reportExplorerDockPanel1.Size = new System.Drawing.Size(200, 123);
this.reportExplorerDockPanel1.SnapControl = this.snapControl1;
this.reportExplorerDockPanel1.Text = "Report Explorer";
//
// reportExplorerDockPanel1_Container
//
this.reportExplorerDockPanel1_Container.Location = new System.Drawing.Point(4, 23);
this.reportExplorerDockPanel1_Container.Name = "reportExplorerDockPanel1_Container";
this.reportExplorerDockPanel1_Container.Size = new System.Drawing.Size(192, 96);
this.reportExplorerDockPanel1_Container.TabIndex = 0;
//
// snapDocumentManager1
//
this.snapDocumentManager1.ClientControl = this.snapControl1;
this.snapDocumentManager1.View = this.noDocumentsView1;
this.snapDocumentManager1.ViewCollection.AddRange(new DevExpress.XtraBars.Docking2010.Views.BaseView[] {
this.noDocumentsView1});
//
// ribbonControl1
//
this.ribbonControl1.ExpandCollapseItem.Id = 0;
this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
this.ribbonControl1.ExpandCollapseItem,
this.fileNewItem1,
this.fileOpenItem1,
this.fileSaveItem1,
this.fileSaveAsItem1,
this.commandBarItem1,
this.quickPrintItem1,
this.printItem1,
this.printPreviewItem1,
this.undoItem1,
this.redoItem1,
this.commandBarItem2,
this.pasteItem1,
this.cutItem1,
this.copyItem1,
this.pasteSpecialItem1,
this.barButtonGroup1,
this.changeFontNameItem1,
this.changeFontSizeItem1,
this.fontSizeIncreaseItem1,
this.fontSizeDecreaseItem1,
this.barButtonGroup2,
this.toggleFontBoldItem1,
this.toggleFontItalicItem1,
this.toggleFontUnderlineItem1,
this.toggleFontDoubleUnderlineItem1,
this.toggleFontStrikeoutItem1,
this.toggleFontDoubleStrikeoutItem1,
this.toggleFontSuperscriptItem1,
this.toggleFontSubscriptItem1,
this.barButtonGroup3,
this.changeFontColorItem1,
this.changeFontBackColorItem1,
this.changeTextCaseItem1,
this.makeTextUpperCaseItem1,
this.makeTextLowerCaseItem1,
this.toggleTextCaseItem1,
this.clearFormattingItem1,
this.barButtonGroup4,
this.toggleBulletedListItem1,
this.toggleNumberingListItem1,
this.toggleMultiLevelListItem1,
this.barButtonGroup5,
this.decreaseIndentItem1,
this.increaseIndentItem1,
this.barButtonGroup6,
this.toggleParagraphAlignmentLeftItem1,
this.toggleParagraphAlignmentCenterItem1,
this.toggleParagraphAlignmentRightItem1,
this.toggleParagraphAlignmentJustifyItem1,
this.toggleShowWhitespaceItem1,
this.barButtonGroup7,
this.changeParagraphLineSpacingItem1,
this.setSingleParagraphSpacingItem1,
this.setSesquialteralParagraphSpacingItem1,
this.setDoubleParagraphSpacingItem1,
this.showLineSpacingFormItem1,
this.addSpacingBeforeParagraphItem1,
this.removeSpacingBeforeParagraphItem1,
this.addSpacingAfterParagraphItem1,
this.removeSpacingAfterParagraphItem1,
this.changeParagraphBackColorItem1,
this.galleryChangeStyleItem1,
this.findItem1,
this.replaceItem1,
this.insertPageBreakItem1,
this.insertTableItem1,
this.insertPictureItem1,
this.insertFloatingPictureItem1,
this.commandBarItem3,
this.commandBarItem4,
this.commandBarItem5,
this.insertBookmarkItem1,
this.insertHyperlinkItem1,
this.editPageHeaderItem1,
this.editPageFooterItem1,
this.insertPageNumberItem1,
this.insertPageCountItem1,
this.insertTextBoxItem1,
this.insertSymbolItem1,
this.changeSectionPageMarginsItem1,
this.setNormalSectionPageMarginsItem1,
this.setNarrowSectionPageMarginsItem1,
this.setModerateSectionPageMarginsItem1,
this.setWideSectionPageMarginsItem1,
this.showPageMarginsSetupFormItem1,
this.changeSectionPageOrientationItem1,
this.setPortraitPageOrientationItem1,
this.setLandscapePageOrientationItem1,
this.changeSectionPaperKindItem1,
this.changeSectionColumnsItem1,
this.setSectionOneColumnItem1,
this.setSectionTwoColumnsItem1,
this.setSectionThreeColumnsItem1,
this.showColumnsSetupFormItem1,
this.insertBreakItem1,
this.insertColumnBreakItem1,
this.insertSectionBreakNextPageItem1,
this.insertSectionBreakEvenPageItem1,
this.insertSectionBreakOddPageItem1,
this.changeSectionLineNumberingItem1,
this.setSectionLineNumberingNoneItem1,
this.setSectionLineNumberingContinuousItem1,
this.setSectionLineNumberingRestartNewPageItem1,
this.setSectionLineNumberingRestartNewSectionItem1,
this.toggleParagraphSuppressLineNumbersItem1,
this.showLineNumberingFormItem1,
this.changePageColorItem1,
this.switchToSimpleViewItem1,
this.switchToDraftViewItem1,
this.switchToPrintLayoutViewItem1,
this.toggleShowHorizontalRulerItem1,
this.toggleShowVerticalRulerItem1,
this.zoomOutItem1,
this.zoomInItem1,
this.snapBarToolbarsListItem1,
this.commandBarCheckItem1,
this.showAllFieldCodesItem1,
this.showAllFieldResultsItem1,
this.toggleFieldHighlightingItem1,
this.goToPageHeaderItem1,
this.goToPageFooterItem1,
this.goToNextHeaderFooterItem1,
this.goToPreviousHeaderFooterItem1,
this.toggleLinkToPreviousItem1,
this.toggleDifferentFirstPageItem1,
this.toggleDifferentOddAndEvenPagesItem1,
this.closePageHeaderFooterItem1,
this.toggleFirstRowItem1,
this.toggleLastRowItem1,
this.toggleBandedRowsItem1,
this.toggleFirstColumnItem1,
this.toggleLastColumnItem1,
this.toggleBandedColumnItem1,
this.galleryChangeTableStyleItem1,
this.galleryChangeTableCellStyleItem1,
this.changeTableBorderLineStyleItem1,
this.changeTableBorderLineWeightItem1,
this.changeTableBorderColorItem1,
this.changeTableBordersItem1,
this.toggleTableCellsBottomBorderItem1,
this.toggleTableCellsTopBorderItem1,
this.toggleTableCellsLeftBorderItem1,
this.toggleTableCellsRightBorderItem1,
this.resetTableCellsAllBordersItem1,
this.toggleTableCellsAllBordersItem1,
this.toggleTableCellsOutsideBorderItem1,
this.toggleTableCellsInsideBorderItem1,
this.toggleTableCellsInsideHorizontalBorderItem1,
this.toggleTableCellsInsideVerticalBorderItem1,
this.toggleShowTableGridLinesItem1,
this.changeTableCellsShadingItem1,
this.selectTableElementsItem1,
this.selectTableCellItem1,
this.selectTableColumnItem1,
this.selectTableRowItem1,
this.selectTableItem1,
this.showTablePropertiesFormItem1,
this.deleteTableElementsItem1,
this.showDeleteTableCellsFormItem1,
this.deleteTableColumnsItem1,
this.deleteTableRowsItem1,
this.deleteTableItem1,
this.insertTableRowAboveItem1,
this.insertTableRowBelowItem1,
this.insertTableColumnToLeftItem1,
this.insertTableColumnToRightItem1,
this.mergeTableCellsItem1,
this.showSplitTableCellsForm1,
this.splitTableItem1,
this.toggleTableAutoFitItem1,
this.toggleTableAutoFitContentsItem1,
this.toggleTableAutoFitWindowItem1,
this.toggleTableFixedColumnWidthItem1,
this.toggleTableCellsTopLeftAlignmentItem1,
this.toggleTableCellsMiddleLeftAlignmentItem1,
this.toggleTableCellsBottomLeftAlignmentItem1,
this.toggleTableCellsTopCenterAlignmentItem1,
this.toggleTableCellsMiddleCenterAlignmentItem1,
this.toggleTableCellsBottomCenterAlignmentItem1,
this.toggleTableCellsTopRightAlignmentItem1,
this.toggleTableCellsMiddleRightAlignmentItem1,
this.toggleTableCellsBottomRightAlignmentItem1,
this.showTableOptionsFormItem1,
this.checkSpellingItem1,
this.insertTableOfContentsItem1,
this.updateTableOfContentsItem1,
this.addParagraphsToTableOfContentItem1,
this.setParagraphHeadingLevelItem1,
this.setParagraphHeadingLevelItem2,
this.setParagraphHeadingLevelItem3,
this.setParagraphHeadingLevelItem4,
this.setParagraphHeadingLevelItem5,
this.setParagraphHeadingLevelItem6,
this.setParagraphHeadingLevelItem7,
this.setParagraphHeadingLevelItem8,
this.setParagraphHeadingLevelItem9,
this.setParagraphHeadingLevelItem10,
this.insertCaptionPlaceholderItem1,
this.insertFiguresCaptionItems1,
this.insertTablesCaptionItems1,
this.insertEquationsCaptionItems1,
this.insertTableOfFiguresPlaceholderItem1,
this.insertTableOfFiguresItems1,
this.insertTableOfTablesItems1,
this.insertTableOfEquationsItems1,
this.changeFloatingObjectFillColorItem1,
this.changeFloatingObjectOutlineColorItem1,
this.changeFloatingObjectOutlineWeightItem1,
this.changeFloatingObjectTextWrapTypeItem1,
this.setFloatingObjectSquareTextWrapTypeItem1,
this.setFloatingObjectTightTextWrapTypeItem1,
this.setFloatingObjectThroughTextWrapTypeItem1,
this.setFloatingObjectTopAndBottomTextWrapTypeItem1,
this.setFloatingObjectBehindTextWrapTypeItem1,
this.setFloatingObjectInFrontOfTextWrapTypeItem1,
this.changeFloatingObjectAlignmentItem1,
this.setFloatingObjectTopLeftAlignmentItem1,
this.setFloatingObjectTopCenterAlignmentItem1,
this.setFloatingObjectTopRightAlignmentItem1,
this.setFloatingObjectMiddleLeftAlignmentItem1,
this.setFloatingObjectMiddleCenterAlignmentItem1,
this.setFloatingObjectMiddleRightAlignmentItem1,
this.setFloatingObjectBottomLeftAlignmentItem1,
this.setFloatingObjectBottomCenterAlignmentItem1,
this.setFloatingObjectBottomRightAlignmentItem1,
this.floatingObjectBringForwardSubItem1,
this.floatingObjectBringForwardItem1,
this.floatingObjectBringToFrontItem1,
this.floatingObjectBringInFrontOfTextItem1,
this.floatingObjectSendBackwardSubItem1,
this.floatingObjectSendBackwardItem1,
this.floatingObjectSendToBackItem1,
this.floatingObjectSendBehindTextItem1,
this.themesGalleryBarItem1,
this.commandBarCheckItem2,
this.commandBarCheckItem3,
this.commandBarCheckItem4,
this.commandBarSubItem1,
this.commandBarCheckItem5,
this.commandBarCheckItem6,
this.commandBarCheckItem7,
this.commandBarCheckItem8,
this.commandBarCheckItem9,
this.filterPopupButtonItem1,
this.propertiesBarButtonItem1,
this.commandBarSubItem2,
this.commandBarCheckItem10,
this.commandBarCheckItem11,
this.commandBarSubItem3,
this.commandBarCheckItem12,
this.commandBarCheckItem13,
this.commandBarItem6,
this.commandBarItem7,
this.commandBarSubItem4,
this.commandBarCheckItem14,
this.commandBarCheckItem15,
this.commandBarCheckItem16,
this.commandBarCheckItem17,
this.commandBarCheckItem18,
this.commandBarCheckItem19,
this.commandBarCheckItem20,
this.commandBarSubItem5,
this.commandBarCheckItem21,
this.commandBarCheckItem22,
this.commandBarSubItem6,
this.commandBarCheckItem23,
this.commandBarCheckItem24,
this.commandBarItem8,
this.commandBarItem9,
this.commandBarItem10,
this.commandBarSubItem7,
this.commandBarCheckItem25,
this.commandBarCheckItem26,
this.commandBarCheckItem27,
this.commandBarCheckItem28,
this.commandBarCheckItem29,
this.commandBarCheckItem30,
this.commandBarCheckItem31,
this.commandBarItem11,
this.barButtonGroup8,
this.changeEditorRowLimitItem1,
this.createBarBaseItem1,
this.createLineBaseItem1,
this.createPieBaseItem1,
this.createRotatedBarBaseItem1,
this.createAreaBaseItem1,
this.createOtherSeriesTypesBaseItem1,
this.changePaletteGalleryBaseItem1,
this.changeAppearanceGalleryBaseItem1,
this.runWizardChartItem1});
this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
this.ribbonControl1.MaxItemId = 291;
this.ribbonControl1.Name = "ribbonControl1";
this.ribbonControl1.PageCategories.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageCategory[] {
this.headerFooterToolsRibbonPageCategory1,
this.tableToolsRibbonPageCategory1,
this.floatingPictureToolsRibbonPageCategory1,
this.dataToolsRibbonPageCategory1,
this.chartRibbonPageCategory1});
this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
this.fileRibbonPage1,
this.homeRibbonPage1,
this.insertRibbonPage1,
this.pageLayoutRibbonPage1,
this.viewRibbonPage1,
this.reviewRibbonPage1,
this.referencesRibbonPage1});
this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemFontEdit1,
this.repositoryItemRichEditFontSizeEdit1,
this.repositoryItemBorderLineStyle1,
this.repositoryItemBorderLineWeight1,
this.repositoryItemFloatingObjectOutlineWeight1,
this.repositoryItemEditorRowLimitEdit1});
this.ribbonControl1.Size = new System.Drawing.Size(1183, 142);
//
// snapBarController1
//
this.snapBarController1.BarItems.Add(this.fileNewItem1);
this.snapBarController1.BarItems.Add(this.fileOpenItem1);
this.snapBarController1.BarItems.Add(this.fileSaveItem1);
this.snapBarController1.BarItems.Add(this.fileSaveAsItem1);
this.snapBarController1.BarItems.Add(this.commandBarItem1);
this.snapBarController1.BarItems.Add(this.quickPrintItem1);
this.snapBarController1.BarItems.Add(this.printItem1);
this.snapBarController1.BarItems.Add(this.printPreviewItem1);
this.snapBarController1.BarItems.Add(this.undoItem1);
this.snapBarController1.BarItems.Add(this.redoItem1);
this.snapBarController1.BarItems.Add(this.commandBarItem2);
this.snapBarController1.BarItems.Add(this.pasteItem1);
this.snapBarController1.BarItems.Add(this.cutItem1);
this.snapBarController1.BarItems.Add(this.copyItem1);
this.snapBarController1.BarItems.Add(this.pasteSpecialItem1);
this.snapBarController1.BarItems.Add(this.changeFontNameItem1);
this.snapBarController1.BarItems.Add(this.changeFontSizeItem1);
this.snapBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
this.snapBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
this.snapBarController1.BarItems.Add(this.toggleFontBoldItem1);
this.snapBarController1.BarItems.Add(this.toggleFontItalicItem1);
this.snapBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
this.snapBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
this.snapBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
this.snapBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
this.snapBarController1.BarItems.Add(this.toggleFontSuperscriptItem1);
this.snapBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
this.snapBarController1.BarItems.Add(this.changeFontColorItem1);
this.snapBarController1.BarItems.Add(this.changeFontBackColorItem1);
this.snapBarController1.BarItems.Add(this.changeTextCaseItem1);
this.snapBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
this.snapBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
this.snapBarController1.BarItems.Add(this.toggleTextCaseItem1);
this.snapBarController1.BarItems.Add(this.clearFormattingItem1);
this.snapBarController1.BarItems.Add(this.toggleBulletedListItem1);
this.snapBarController1.BarItems.Add(this.toggleNumberingListItem1);
this.snapBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
this.snapBarController1.BarItems.Add(this.decreaseIndentItem1);
this.snapBarController1.BarItems.Add(this.increaseIndentItem1);
this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
this.snapBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
this.snapBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
this.snapBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
this.snapBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
this.snapBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
this.snapBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
this.snapBarController1.BarItems.Add(this.showLineSpacingFormItem1);
this.snapBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
this.snapBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
this.snapBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
this.snapBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
this.snapBarController1.BarItems.Add(this.changeParagraphBackColorItem1);
this.snapBarController1.BarItems.Add(this.galleryChangeStyleItem1);
this.snapBarController1.BarItems.Add(this.findItem1);
this.snapBarController1.BarItems.Add(this.replaceItem1);
this.snapBarController1.BarItems.Add(this.insertPageBreakItem1);
this.snapBarController1.BarItems.Add(this.insertTableItem1);
this.snapBarController1.BarItems.Add(this.insertPictureItem1);
this.snapBarController1.BarItems.Add(this.insertFloatingPictureItem1);
this.snapBarController1.BarItems.Add(this.commandBarItem3);
this.snapBarController1.BarItems.Add(this.commandBarItem4);
this.snapBarController1.BarItems.Add(this.commandBarItem5);
this.snapBarController1.BarItems.Add(this.insertBookmarkItem1);
this.snapBarController1.BarItems.Add(this.insertHyperlinkItem1);
this.snapBarController1.BarItems.Add(this.editPageHeaderItem1);
this.snapBarController1.BarItems.Add(this.editPageFooterItem1);
this.snapBarController1.BarItems.Add(this.insertPageNumberItem1);
this.snapBarController1.BarItems.Add(this.insertPageCountItem1);
this.snapBarController1.BarItems.Add(this.insertTextBoxItem1);
this.snapBarController1.BarItems.Add(this.insertSymbolItem1);
this.snapBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
this.snapBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
this.snapBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
this.snapBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
this.snapBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
this.snapBarController1.BarItems.Add(this.showPageMarginsSetupFormItem1);
this.snapBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
this.snapBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
this.snapBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
this.snapBarController1.BarItems.Add(this.changeSectionPaperKindItem1);
this.snapBarController1.BarItems.Add(this.changeSectionColumnsItem1);
this.snapBarController1.BarItems.Add(this.setSectionOneColumnItem1);
this.snapBarController1.BarItems.Add(this.setSectionTwoColumnsItem1);
this.snapBarController1.BarItems.Add(this.setSectionThreeColumnsItem1);
this.snapBarController1.BarItems.Add(this.showColumnsSetupFormItem1);
this.snapBarController1.BarItems.Add(this.insertBreakItem1);
this.snapBarController1.BarItems.Add(this.insertPageBreakItem2);
this.snapBarController1.BarItems.Add(this.insertColumnBreakItem1);
this.snapBarController1.BarItems.Add(this.insertSectionBreakNextPageItem1);
this.snapBarController1.BarItems.Add(this.insertSectionBreakEvenPageItem1);
this.snapBarController1.BarItems.Add(this.insertSectionBreakOddPageItem1);
this.snapBarController1.BarItems.Add(this.changeSectionLineNumberingItem1);
this.snapBarController1.BarItems.Add(this.setSectionLineNumberingNoneItem1);
this.snapBarController1.BarItems.Add(this.setSectionLineNumberingContinuousItem1);
this.snapBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewPageItem1);
this.snapBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewSectionItem1);
this.snapBarController1.BarItems.Add(this.toggleParagraphSuppressLineNumbersItem1);
this.snapBarController1.BarItems.Add(this.showLineNumberingFormItem1);
this.snapBarController1.BarItems.Add(this.changePageColorItem1);
this.snapBarController1.BarItems.Add(this.switchToSimpleViewItem1);
this.snapBarController1.BarItems.Add(this.switchToDraftViewItem1);
this.snapBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
this.snapBarController1.BarItems.Add(this.toggleShowHorizontalRulerItem1);
this.snapBarController1.BarItems.Add(this.toggleShowVerticalRulerItem1);
this.snapBarController1.BarItems.Add(this.zoomOutItem1);
this.snapBarController1.BarItems.Add(this.zoomInItem1);
this.snapBarController1.BarItems.Add(this.snapBarToolbarsListItem1);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem1);
this.snapBarController1.BarItems.Add(this.showAllFieldCodesItem1);
this.snapBarController1.BarItems.Add(this.showAllFieldResultsItem1);
this.snapBarController1.BarItems.Add(this.toggleFieldHighlightingItem1);
this.snapBarController1.BarItems.Add(this.goToPageHeaderItem1);
this.snapBarController1.BarItems.Add(this.goToPageFooterItem1);
this.snapBarController1.BarItems.Add(this.goToNextHeaderFooterItem1);
this.snapBarController1.BarItems.Add(this.goToPreviousHeaderFooterItem1);
this.snapBarController1.BarItems.Add(this.toggleLinkToPreviousItem1);
this.snapBarController1.BarItems.Add(this.toggleDifferentFirstPageItem1);
this.snapBarController1.BarItems.Add(this.toggleDifferentOddAndEvenPagesItem1);
this.snapBarController1.BarItems.Add(this.closePageHeaderFooterItem1);
this.snapBarController1.BarItems.Add(this.toggleFirstRowItem1);
this.snapBarController1.BarItems.Add(this.toggleLastRowItem1);
this.snapBarController1.BarItems.Add(this.toggleBandedRowsItem1);
this.snapBarController1.BarItems.Add(this.toggleFirstColumnItem1);
this.snapBarController1.BarItems.Add(this.toggleLastColumnItem1);
this.snapBarController1.BarItems.Add(this.toggleBandedColumnItem1);
this.snapBarController1.BarItems.Add(this.galleryChangeTableStyleItem1);
this.snapBarController1.BarItems.Add(this.galleryChangeTableCellStyleItem1);
this.snapBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
this.snapBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
this.snapBarController1.BarItems.Add(this.changeTableBorderColorItem1);
this.snapBarController1.BarItems.Add(this.changeTableBordersItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
this.snapBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
this.snapBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
this.snapBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
this.snapBarController1.BarItems.Add(this.selectTableElementsItem1);
this.snapBarController1.BarItems.Add(this.selectTableCellItem1);
this.snapBarController1.BarItems.Add(this.selectTableColumnItem1);
this.snapBarController1.BarItems.Add(this.selectTableRowItem1);
this.snapBarController1.BarItems.Add(this.selectTableItem1);
this.snapBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
this.snapBarController1.BarItems.Add(this.deleteTableElementsItem1);
this.snapBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
this.snapBarController1.BarItems.Add(this.deleteTableColumnsItem1);
this.snapBarController1.BarItems.Add(this.deleteTableRowsItem1);
this.snapBarController1.BarItems.Add(this.deleteTableItem1);
this.snapBarController1.BarItems.Add(this.insertTableRowAboveItem1);
this.snapBarController1.BarItems.Add(this.insertTableRowBelowItem1);
this.snapBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
this.snapBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
this.snapBarController1.BarItems.Add(this.mergeTableCellsItem1);
this.snapBarController1.BarItems.Add(this.showSplitTableCellsForm1);
this.snapBarController1.BarItems.Add(this.splitTableItem1);
this.snapBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
this.snapBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
this.snapBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
this.snapBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
this.snapBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
this.snapBarController1.BarItems.Add(this.showTableOptionsFormItem1);
this.snapBarController1.BarItems.Add(this.checkSpellingItem1);
this.snapBarController1.BarItems.Add(this.insertTableOfContentsItem1);
this.snapBarController1.BarItems.Add(this.updateTableOfContentsItem1);
this.snapBarController1.BarItems.Add(this.addParagraphsToTableOfContentItem1);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem1);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem2);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem3);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem4);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem5);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem6);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem7);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem8);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem9);
this.snapBarController1.BarItems.Add(this.setParagraphHeadingLevelItem10);
this.snapBarController1.BarItems.Add(this.insertCaptionPlaceholderItem1);
this.snapBarController1.BarItems.Add(this.insertFiguresCaptionItems1);
this.snapBarController1.BarItems.Add(this.insertTablesCaptionItems1);
this.snapBarController1.BarItems.Add(this.insertEquationsCaptionItems1);
this.snapBarController1.BarItems.Add(this.insertTableOfFiguresPlaceholderItem1);
this.snapBarController1.BarItems.Add(this.insertTableOfFiguresItems1);
this.snapBarController1.BarItems.Add(this.insertTableOfTablesItems1);
this.snapBarController1.BarItems.Add(this.insertTableOfEquationsItems1);
this.snapBarController1.BarItems.Add(this.changeFloatingObjectFillColorItem1);
this.snapBarController1.BarItems.Add(this.changeFloatingObjectOutlineColorItem1);
this.snapBarController1.BarItems.Add(this.changeFloatingObjectOutlineWeightItem1);
this.snapBarController1.BarItems.Add(this.changeFloatingObjectTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectSquareTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectTightTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectThroughTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectTopAndBottomTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectBehindTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectInFrontOfTextWrapTypeItem1);
this.snapBarController1.BarItems.Add(this.changeFloatingObjectAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectTopLeftAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectTopCenterAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectTopRightAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectMiddleLeftAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectMiddleCenterAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectMiddleRightAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectBottomLeftAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectBottomCenterAlignmentItem1);
this.snapBarController1.BarItems.Add(this.setFloatingObjectBottomRightAlignmentItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectBringForwardSubItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectBringForwardItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectBringToFrontItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectBringInFrontOfTextItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectSendBackwardSubItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectSendBackwardItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectSendToBackItem1);
this.snapBarController1.BarItems.Add(this.floatingObjectSendBehindTextItem1);
this.snapBarController1.BarItems.Add(this.themesGalleryBarItem1);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem2);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem3);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem4);
this.snapBarController1.BarItems.Add(this.commandBarSubItem1);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem5);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem6);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem7);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem8);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem9);
this.snapBarController1.BarItems.Add(this.filterPopupButtonItem1);
this.snapBarController1.BarItems.Add(this.propertiesBarButtonItem1);
this.snapBarController1.BarItems.Add(this.commandBarSubItem2);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem10);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem11);
this.snapBarController1.BarItems.Add(this.commandBarSubItem3);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem12);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem13);
this.snapBarController1.BarItems.Add(this.commandBarItem6);
this.snapBarController1.BarItems.Add(this.commandBarItem7);
this.snapBarController1.BarItems.Add(this.commandBarSubItem4);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem14);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem15);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem16);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem17);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem18);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem19);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem20);
this.snapBarController1.BarItems.Add(this.commandBarSubItem5);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem21);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem22);
this.snapBarController1.BarItems.Add(this.commandBarSubItem6);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem23);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem24);
this.snapBarController1.BarItems.Add(this.commandBarItem8);
this.snapBarController1.BarItems.Add(this.commandBarItem9);
this.snapBarController1.BarItems.Add(this.commandBarItem10);
this.snapBarController1.BarItems.Add(this.commandBarSubItem7);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem25);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem26);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem27);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem28);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem29);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem30);
this.snapBarController1.BarItems.Add(this.commandBarCheckItem31);
this.snapBarController1.BarItems.Add(this.commandBarItem11);
this.snapBarController1.BarItems.Add(this.changeEditorRowLimitItem1);
this.snapBarController1.BarItems.Add(this.createBarBaseItem1);
this.snapBarController1.BarItems.Add(this.createLineBaseItem1);
this.snapBarController1.BarItems.Add(this.createPieBaseItem1);
this.snapBarController1.BarItems.Add(this.createRotatedBarBaseItem1);
this.snapBarController1.BarItems.Add(this.createAreaBaseItem1);
this.snapBarController1.BarItems.Add(this.createOtherSeriesTypesBaseItem1);
this.snapBarController1.BarItems.Add(this.changePaletteGalleryBaseItem1);
this.snapBarController1.BarItems.Add(this.changeAppearanceGalleryBaseItem1);
this.snapBarController1.BarItems.Add(this.runWizardChartItem1);
this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.headerFooterToolsRibbonPageCategory1));
this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.tableToolsRibbonPageCategory1));
this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.floatingPictureToolsRibbonPageCategory1));
this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.dataToolsRibbonPageCategory1));
this.snapBarController1.ContextPageCategories.Add(new DevExpress.Snap.Extensions.UI.ContextRibbonPageCategoryItem(this.chartRibbonPageCategory1));
this.snapBarController1.Control = this.snapControl1;
this.snapBarController1.RibbonControl = this.ribbonControl1;
this.snapBarController1.SnapDockManager = this.snapDockManager1;
//
// commonRibbonPageGroup1
//
this.commonRibbonPageGroup1.ItemLinks.Add(this.fileNewItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.fileOpenItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.fileSaveAsItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.commandBarItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.quickPrintItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.printItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.printPreviewItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.undoItem1);
this.commonRibbonPageGroup1.ItemLinks.Add(this.redoItem1);
this.commonRibbonPageGroup1.Name = "commonRibbonPageGroup1";
//
// fileRibbonPage1
//
this.fileRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.commonRibbonPageGroup1,
this.dataRibbonPageGroup1});
this.fileRibbonPage1.Name = "fileRibbonPage1";
//
// fileNewItem1
//
this.fileNewItem1.Id = 9;
this.fileNewItem1.Name = "fileNewItem1";
//
// fileOpenItem1
//
this.fileOpenItem1.Id = 10;
this.fileOpenItem1.Name = "fileOpenItem1";
//
// fileSaveItem1
//
this.fileSaveItem1.Id = 11;
this.fileSaveItem1.Name = "fileSaveItem1";
//
// fileSaveAsItem1
//
this.fileSaveAsItem1.Id = 12;
this.fileSaveAsItem1.Name = "fileSaveAsItem1";
//
// commandBarItem1
//
this.commandBarItem1.Id = 13;
this.commandBarItem1.Name = "commandBarItem1";
this.commandBarItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ExportDocument;
//
// quickPrintItem1
//
this.quickPrintItem1.Id = 14;
this.quickPrintItem1.Name = "quickPrintItem1";
//
// printItem1
//
this.printItem1.Id = 15;
this.printItem1.Name = "printItem1";
//
// printPreviewItem1
//
this.printPreviewItem1.Id = 16;
this.printPreviewItem1.Name = "printPreviewItem1";
//
// undoItem1
//
this.undoItem1.Id = 17;
this.undoItem1.Name = "undoItem1";
//
// redoItem1
//
this.redoItem1.Id = 18;
this.redoItem1.Name = "redoItem1";
//
// dataRibbonPageGroup1
//
this.dataRibbonPageGroup1.ItemLinks.Add(this.commandBarItem2);
this.dataRibbonPageGroup1.Name = "dataRibbonPageGroup1";
//
// commandBarItem2
//
this.commandBarItem2.Id = 19;
this.commandBarItem2.Name = "commandBarItem2";
this.commandBarItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.NewDataSource;
//
// clipboardRibbonPageGroup1
//
this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteItem1);
this.clipboardRibbonPageGroup1.ItemLinks.Add(this.cutItem1);
this.clipboardRibbonPageGroup1.ItemLinks.Add(this.copyItem1);
this.clipboardRibbonPageGroup1.ItemLinks.Add(this.pasteSpecialItem1);
this.clipboardRibbonPageGroup1.Name = "clipboardRibbonPageGroup1";
//
// homeRibbonPage1
//
this.homeRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.clipboardRibbonPageGroup1,
this.fontRibbonPageGroup1,
this.paragraphRibbonPageGroup1,
this.stylesRibbonPageGroup1,
this.editingRibbonPageGroup1});
this.homeRibbonPage1.Name = "homeRibbonPage1";
reduceOperation1.Behavior = DevExpress.XtraBars.Ribbon.ReduceOperationBehavior.UntilAvailable;
reduceOperation1.Group = this.stylesRibbonPageGroup1;
reduceOperation1.ItemLinkIndex = 0;
reduceOperation1.ItemLinksCount = 0;
reduceOperation1.Operation = DevExpress.XtraBars.Ribbon.ReduceOperationType.Gallery;
this.homeRibbonPage1.ReduceOperations.Add(reduceOperation1);
//
// pasteItem1
//
this.pasteItem1.Id = 20;
this.pasteItem1.Name = "pasteItem1";
//
// cutItem1
//
this.cutItem1.Id = 21;
this.cutItem1.Name = "cutItem1";
//
// copyItem1
//
this.copyItem1.Id = 22;
this.copyItem1.Name = "copyItem1";
//
// pasteSpecialItem1
//
this.pasteSpecialItem1.Id = 23;
this.pasteSpecialItem1.Name = "pasteSpecialItem1";
//
// fontRibbonPageGroup1
//
this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup1);
this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup2);
this.fontRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup3);
this.fontRibbonPageGroup1.ItemLinks.Add(this.changeTextCaseItem1);
this.fontRibbonPageGroup1.ItemLinks.Add(this.clearFormattingItem1);
this.fontRibbonPageGroup1.Name = "fontRibbonPageGroup1";
//
// changeFontNameItem1
//
this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
this.changeFontNameItem1.Id = 24;
this.changeFontNameItem1.Name = "changeFontNameItem1";
//
// changeFontSizeItem1
//
this.changeFontSizeItem1.Edit = this.repositoryItemRichEditFontSizeEdit1;
this.changeFontSizeItem1.Id = 25;
this.changeFontSizeItem1.Name = "changeFontSizeItem1";
//
// fontSizeIncreaseItem1
//
this.fontSizeIncreaseItem1.Id = 26;
this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
//
// fontSizeDecreaseItem1
//
this.fontSizeDecreaseItem1.Id = 27;
this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
//
// toggleFontBoldItem1
//
this.toggleFontBoldItem1.Id = 28;
this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
//
// toggleFontItalicItem1
//
this.toggleFontItalicItem1.Id = 29;
this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
//
// toggleFontUnderlineItem1
//
this.toggleFontUnderlineItem1.Id = 30;
this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
//
// toggleFontDoubleUnderlineItem1
//
this.toggleFontDoubleUnderlineItem1.Id = 31;
this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
//
// toggleFontStrikeoutItem1
//
this.toggleFontStrikeoutItem1.Id = 32;
this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
//
// toggleFontDoubleStrikeoutItem1
//
this.toggleFontDoubleStrikeoutItem1.Id = 33;
this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
//
// toggleFontSuperscriptItem1
//
this.toggleFontSuperscriptItem1.Id = 34;
this.toggleFontSuperscriptItem1.Name = "toggleFontSuperscriptItem1";
//
// toggleFontSubscriptItem1
//
this.toggleFontSubscriptItem1.Id = 35;
this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
//
// changeFontColorItem1
//
this.changeFontColorItem1.Id = 36;
this.changeFontColorItem1.Name = "changeFontColorItem1";
//
// changeFontBackColorItem1
//
this.changeFontBackColorItem1.Id = 37;
this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
//
// changeTextCaseItem1
//
this.changeTextCaseItem1.Id = 38;
this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
this.changeTextCaseItem1.Name = "changeTextCaseItem1";
//
// makeTextUpperCaseItem1
//
this.makeTextUpperCaseItem1.Id = 39;
this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
//
// makeTextLowerCaseItem1
//
this.makeTextLowerCaseItem1.Id = 40;
this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
//
// toggleTextCaseItem1
//
this.toggleTextCaseItem1.Id = 41;
this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
//
// clearFormattingItem1
//
this.clearFormattingItem1.Id = 42;
this.clearFormattingItem1.Name = "clearFormattingItem1";
//
// barButtonGroup1
//
this.barButtonGroup1.Id = 1;
this.barButtonGroup1.ItemLinks.Add(this.changeFontNameItem1);
this.barButtonGroup1.ItemLinks.Add(this.changeFontSizeItem1);
this.barButtonGroup1.ItemLinks.Add(this.fontSizeIncreaseItem1);
this.barButtonGroup1.ItemLinks.Add(this.fontSizeDecreaseItem1);
this.barButtonGroup1.Name = "barButtonGroup1";
this.barButtonGroup1.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
//
// repositoryItemFontEdit1
//
this.repositoryItemFontEdit1.AutoHeight = false;
this.repositoryItemFontEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repositoryItemFontEdit1.Name = "repositoryItemFontEdit1";
//
// repositoryItemRichEditFontSizeEdit1
//
this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repositoryItemRichEditFontSizeEdit1.Control = this.snapControl1;
this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
//
// barButtonGroup2
//
this.barButtonGroup2.Id = 2;
this.barButtonGroup2.ItemLinks.Add(this.toggleFontBoldItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontItalicItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontUnderlineItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleUnderlineItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontStrikeoutItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontDoubleStrikeoutItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontSuperscriptItem1);
this.barButtonGroup2.ItemLinks.Add(this.toggleFontSubscriptItem1);
this.barButtonGroup2.Name = "barButtonGroup2";
this.barButtonGroup2.Tag = "{433DA7F0-03E2-4650-9DB5-66DD92D16E39}";
//
// barButtonGroup3
//
this.barButtonGroup3.Id = 3;
this.barButtonGroup3.ItemLinks.Add(this.changeFontColorItem1);
this.barButtonGroup3.ItemLinks.Add(this.changeFontBackColorItem1);
this.barButtonGroup3.Name = "barButtonGroup3";
this.barButtonGroup3.Tag = "{DF8C5334-EDE3-47c9-A42C-FE9A9247E180}";
//
// paragraphRibbonPageGroup1
//
this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup4);
this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup5);
this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup6);
this.paragraphRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup7);
this.paragraphRibbonPageGroup1.Name = "paragraphRibbonPageGroup1";
//
// toggleBulletedListItem1
//
this.toggleBulletedListItem1.Id = 43;
this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
//
// toggleNumberingListItem1
//
this.toggleNumberingListItem1.Id = 44;
this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
//
// toggleMultiLevelListItem1
//
this.toggleMultiLevelListItem1.Id = 45;
this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
//
// decreaseIndentItem1
//
this.decreaseIndentItem1.Id = 46;
this.decreaseIndentItem1.Name = "decreaseIndentItem1";
//
// increaseIndentItem1
//
this.increaseIndentItem1.Id = 47;
this.increaseIndentItem1.Name = "increaseIndentItem1";
//
// toggleParagraphAlignmentLeftItem1
//
this.toggleParagraphAlignmentLeftItem1.Id = 49;
this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
//
// toggleParagraphAlignmentCenterItem1
//
this.toggleParagraphAlignmentCenterItem1.Id = 50;
this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
//
// toggleParagraphAlignmentRightItem1
//
this.toggleParagraphAlignmentRightItem1.Id = 51;
this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
//
// toggleParagraphAlignmentJustifyItem1
//
this.toggleParagraphAlignmentJustifyItem1.Id = 52;
this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
//
// toggleShowWhitespaceItem1
//
this.toggleShowWhitespaceItem1.Id = 48;
this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
//
// changeParagraphLineSpacingItem1
//
this.changeParagraphLineSpacingItem1.Id = 53;
this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
//
// setSingleParagraphSpacingItem1
//
this.setSingleParagraphSpacingItem1.Id = 54;
this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
//
// setSesquialteralParagraphSpacingItem1
//
this.setSesquialteralParagraphSpacingItem1.Id = 55;
this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
//
// setDoubleParagraphSpacingItem1
//
this.setDoubleParagraphSpacingItem1.Id = 56;
this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
//
// showLineSpacingFormItem1
//
this.showLineSpacingFormItem1.Id = 57;
this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
//
// addSpacingBeforeParagraphItem1
//
this.addSpacingBeforeParagraphItem1.Id = 58;
this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
//
// removeSpacingBeforeParagraphItem1
//
this.removeSpacingBeforeParagraphItem1.Id = 59;
this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
//
// addSpacingAfterParagraphItem1
//
this.addSpacingAfterParagraphItem1.Id = 60;
this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
//
// removeSpacingAfterParagraphItem1
//
this.removeSpacingAfterParagraphItem1.Id = 61;
this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
//
// changeParagraphBackColorItem1
//
this.changeParagraphBackColorItem1.Id = 62;
this.changeParagraphBackColorItem1.Name = "changeParagraphBackColorItem1";
//
// barButtonGroup4
//
this.barButtonGroup4.Id = 4;
this.barButtonGroup4.ItemLinks.Add(this.toggleBulletedListItem1);
this.barButtonGroup4.ItemLinks.Add(this.toggleNumberingListItem1);
this.barButtonGroup4.ItemLinks.Add(this.toggleMultiLevelListItem1);
this.barButtonGroup4.Name = "barButtonGroup4";
this.barButtonGroup4.Tag = "{0B3A7A43-3079-4ce0-83A8-3789F5F6DC9F}";
//
// barButtonGroup5
//
this.barButtonGroup5.Id = 5;
this.barButtonGroup5.ItemLinks.Add(this.decreaseIndentItem1);
this.barButtonGroup5.ItemLinks.Add(this.increaseIndentItem1);
this.barButtonGroup5.ItemLinks.Add(this.toggleShowWhitespaceItem1);
this.barButtonGroup5.Name = "barButtonGroup5";
this.barButtonGroup5.Tag = "{4747D5AB-2BEB-4ea6-9A1D-8E4FB36F1B40}";
//
// barButtonGroup6
//
this.barButtonGroup6.Id = 6;
this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentLeftItem1);
this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentCenterItem1);
this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentRightItem1);
this.barButtonGroup6.ItemLinks.Add(this.toggleParagraphAlignmentJustifyItem1);
this.barButtonGroup6.Name = "barButtonGroup6";
this.barButtonGroup6.Tag = "{8E89E775-996E-49a0-AADA-DE338E34732E}";
//
// barButtonGroup7
//
this.barButtonGroup7.Id = 7;
this.barButtonGroup7.ItemLinks.Add(this.changeParagraphLineSpacingItem1);
this.barButtonGroup7.ItemLinks.Add(this.changeParagraphBackColorItem1);
this.barButtonGroup7.Name = "barButtonGroup7";
this.barButtonGroup7.Tag = "{9A8DEAD8-3890-4857-A395-EC625FD02217}";
//
// stylesRibbonPageGroup1
//
this.stylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeStyleItem1);
this.stylesRibbonPageGroup1.Name = "stylesRibbonPageGroup1";
//
// galleryChangeStyleItem1
//
//
//
//
this.galleryChangeStyleItem1.Gallery.ColumnCount = 10;
this.galleryChangeStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
galleryItemGroup1});
this.galleryChangeStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
this.galleryChangeStyleItem1.Id = 63;
this.galleryChangeStyleItem1.Name = "galleryChangeStyleItem1";
//
// editingRibbonPageGroup1
//
this.editingRibbonPageGroup1.ItemLinks.Add(this.findItem1);
this.editingRibbonPageGroup1.ItemLinks.Add(this.replaceItem1);
this.editingRibbonPageGroup1.Name = "editingRibbonPageGroup1";
//
// findItem1
//
this.findItem1.Id = 64;
this.findItem1.Name = "findItem1";
//
// replaceItem1
//
this.replaceItem1.Id = 65;
this.replaceItem1.Name = "replaceItem1";
//
// pagesRibbonPageGroup1
//
this.pagesRibbonPageGroup1.ItemLinks.Add(this.insertPageBreakItem1);
this.pagesRibbonPageGroup1.Name = "pagesRibbonPageGroup1";
//
// insertRibbonPage1
//
this.insertRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.pagesRibbonPageGroup1,
this.tablesRibbonPageGroup1,
this.illustrationsRibbonPageGroup1,
this.toolboxRibbonPageGroup1,
this.linksRibbonPageGroup1,
this.headerFooterRibbonPageGroup1,
this.textRibbonPageGroup1,
this.symbolsRibbonPageGroup1});
this.insertRibbonPage1.Name = "insertRibbonPage1";
//
// insertPageBreakItem1
//
this.insertPageBreakItem1.Id = 66;
this.insertPageBreakItem1.Name = "insertPageBreakItem1";
//
// tablesRibbonPageGroup1
//
this.tablesRibbonPageGroup1.ItemLinks.Add(this.insertTableItem1);
this.tablesRibbonPageGroup1.Name = "tablesRibbonPageGroup1";
//
// insertTableItem1
//
this.insertTableItem1.Id = 67;
this.insertTableItem1.Name = "insertTableItem1";
//
// illustrationsRibbonPageGroup1
//
this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertPictureItem1);
this.illustrationsRibbonPageGroup1.ItemLinks.Add(this.insertFloatingPictureItem1);
this.illustrationsRibbonPageGroup1.Name = "illustrationsRibbonPageGroup1";
//
// insertPictureItem1
//
this.insertPictureItem1.Id = 68;
this.insertPictureItem1.Name = "insertPictureItem1";
//
// insertFloatingPictureItem1
//
this.insertFloatingPictureItem1.Id = 69;
this.insertFloatingPictureItem1.Name = "insertFloatingPictureItem1";
//
// toolboxRibbonPageGroup1
//
this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem3);
this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem4);
this.toolboxRibbonPageGroup1.ItemLinks.Add(this.commandBarItem5);
this.toolboxRibbonPageGroup1.Name = "toolboxRibbonPageGroup1";
//
// commandBarItem3
//
this.commandBarItem3.Id = 70;
this.commandBarItem3.Name = "commandBarItem3";
this.commandBarItem3.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertBarCode;
//
// commandBarItem4
//
this.commandBarItem4.Id = 71;
this.commandBarItem4.Name = "commandBarItem4";
this.commandBarItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertCheckBox;
//
// commandBarItem5
//
this.commandBarItem5.Id = 72;
this.commandBarItem5.Name = "commandBarItem5";
this.commandBarItem5.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertChart;
//
// linksRibbonPageGroup1
//
this.linksRibbonPageGroup1.ItemLinks.Add(this.insertBookmarkItem1);
this.linksRibbonPageGroup1.ItemLinks.Add(this.insertHyperlinkItem1);
this.linksRibbonPageGroup1.Name = "linksRibbonPageGroup1";
//
// insertBookmarkItem1
//
this.insertBookmarkItem1.Id = 73;
this.insertBookmarkItem1.Name = "insertBookmarkItem1";
//
// insertHyperlinkItem1
//
this.insertHyperlinkItem1.Id = 74;
this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
//
// headerFooterRibbonPageGroup1
//
this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageHeaderItem1);
this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.editPageFooterItem1);
this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageNumberItem1);
this.headerFooterRibbonPageGroup1.ItemLinks.Add(this.insertPageCountItem1);
this.headerFooterRibbonPageGroup1.Name = "headerFooterRibbonPageGroup1";
//
// editPageHeaderItem1
//
this.editPageHeaderItem1.Id = 75;
this.editPageHeaderItem1.Name = "editPageHeaderItem1";
//
// editPageFooterItem1
//
this.editPageFooterItem1.Id = 76;
this.editPageFooterItem1.Name = "editPageFooterItem1";
//
// insertPageNumberItem1
//
this.insertPageNumberItem1.Id = 77;
this.insertPageNumberItem1.Name = "insertPageNumberItem1";
//
// insertPageCountItem1
//
this.insertPageCountItem1.Id = 78;
this.insertPageCountItem1.Name = "insertPageCountItem1";
//
// textRibbonPageGroup1
//
this.textRibbonPageGroup1.ItemLinks.Add(this.insertTextBoxItem1);
this.textRibbonPageGroup1.Name = "textRibbonPageGroup1";
//
// insertTextBoxItem1
//
this.insertTextBoxItem1.Id = 79;
this.insertTextBoxItem1.Name = "insertTextBoxItem1";
//
// symbolsRibbonPageGroup1
//
this.symbolsRibbonPageGroup1.ItemLinks.Add(this.insertSymbolItem1);
this.symbolsRibbonPageGroup1.Name = "symbolsRibbonPageGroup1";
//
// insertSymbolItem1
//
this.insertSymbolItem1.Id = 80;
this.insertSymbolItem1.Name = "insertSymbolItem1";
//
// pageSetupRibbonPageGroup1
//
this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageMarginsItem1);
this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPageOrientationItem1);
this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionPaperKindItem1);
this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionColumnsItem1);
this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.insertBreakItem1);
this.pageSetupRibbonPageGroup1.ItemLinks.Add(this.changeSectionLineNumberingItem1);
this.pageSetupRibbonPageGroup1.Name = "pageSetupRibbonPageGroup1";
//
// pageLayoutRibbonPage1
//
this.pageLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.pageSetupRibbonPageGroup1,
this.pageBackgroundRibbonPageGroup1});
this.pageLayoutRibbonPage1.Name = "pageLayoutRibbonPage1";
//
// changeSectionPageMarginsItem1
//
this.changeSectionPageMarginsItem1.Id = 81;
this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.showPageMarginsSetupFormItem1)});
this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
//
// setNormalSectionPageMarginsItem1
//
this.setNormalSectionPageMarginsItem1.Id = 82;
this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
//
// setNarrowSectionPageMarginsItem1
//
this.setNarrowSectionPageMarginsItem1.Id = 83;
this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
//
// setModerateSectionPageMarginsItem1
//
this.setModerateSectionPageMarginsItem1.Id = 84;
this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
//
// setWideSectionPageMarginsItem1
//
this.setWideSectionPageMarginsItem1.Id = 85;
this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
//
// showPageMarginsSetupFormItem1
//
this.showPageMarginsSetupFormItem1.Id = 86;
this.showPageMarginsSetupFormItem1.Name = "showPageMarginsSetupFormItem1";
//
// changeSectionPageOrientationItem1
//
this.changeSectionPageOrientationItem1.Id = 87;
this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
//
// setPortraitPageOrientationItem1
//
this.setPortraitPageOrientationItem1.Id = 88;
this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
//
// setLandscapePageOrientationItem1
//
this.setLandscapePageOrientationItem1.Id = 89;
this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
//
// changeSectionPaperKindItem1
//
this.changeSectionPaperKindItem1.Id = 90;
this.changeSectionPaperKindItem1.Name = "changeSectionPaperKindItem1";
//
// changeSectionColumnsItem1
//
this.changeSectionColumnsItem1.Id = 91;
this.changeSectionColumnsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionOneColumnItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionTwoColumnsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionThreeColumnsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.showColumnsSetupFormItem1)});
this.changeSectionColumnsItem1.Name = "changeSectionColumnsItem1";
//
// setSectionOneColumnItem1
//
this.setSectionOneColumnItem1.Id = 92;
this.setSectionOneColumnItem1.Name = "setSectionOneColumnItem1";
//
// setSectionTwoColumnsItem1
//
this.setSectionTwoColumnsItem1.Id = 93;
this.setSectionTwoColumnsItem1.Name = "setSectionTwoColumnsItem1";
//
// setSectionThreeColumnsItem1
//
this.setSectionThreeColumnsItem1.Id = 94;
this.setSectionThreeColumnsItem1.Name = "setSectionThreeColumnsItem1";
//
// showColumnsSetupFormItem1
//
this.showColumnsSetupFormItem1.Id = 95;
this.showColumnsSetupFormItem1.Name = "showColumnsSetupFormItem1";
//
// insertBreakItem1
//
this.insertBreakItem1.Id = 96;
this.insertBreakItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.insertPageBreakItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertColumnBreakItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakNextPageItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakEvenPageItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakOddPageItem1)});
this.insertBreakItem1.Name = "insertBreakItem1";
//
// insertPageBreakItem2
//
this.insertPageBreakItem2.Id = -1;
this.insertPageBreakItem2.Name = "insertPageBreakItem2";
//
// insertColumnBreakItem1
//
this.insertColumnBreakItem1.Id = 97;
this.insertColumnBreakItem1.Name = "insertColumnBreakItem1";
//
// insertSectionBreakNextPageItem1
//
this.insertSectionBreakNextPageItem1.Id = 98;
this.insertSectionBreakNextPageItem1.Name = "insertSectionBreakNextPageItem1";
//
// insertSectionBreakEvenPageItem1
//
this.insertSectionBreakEvenPageItem1.Id = 99;
this.insertSectionBreakEvenPageItem1.Name = "insertSectionBreakEvenPageItem1";
//
// insertSectionBreakOddPageItem1
//
this.insertSectionBreakOddPageItem1.Id = 100;
this.insertSectionBreakOddPageItem1.Name = "insertSectionBreakOddPageItem1";
//
// changeSectionLineNumberingItem1
//
this.changeSectionLineNumberingItem1.Id = 101;
this.changeSectionLineNumberingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingNoneItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingContinuousItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewPageItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewSectionItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphSuppressLineNumbersItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.showLineNumberingFormItem1)});
this.changeSectionLineNumberingItem1.Name = "changeSectionLineNumberingItem1";
//
// setSectionLineNumberingNoneItem1
//
this.setSectionLineNumberingNoneItem1.Id = 102;
this.setSectionLineNumberingNoneItem1.Name = "setSectionLineNumberingNoneItem1";
//
// setSectionLineNumberingContinuousItem1
//
this.setSectionLineNumberingContinuousItem1.Id = 103;
this.setSectionLineNumberingContinuousItem1.Name = "setSectionLineNumberingContinuousItem1";
//
// setSectionLineNumberingRestartNewPageItem1
//
this.setSectionLineNumberingRestartNewPageItem1.Id = 104;
this.setSectionLineNumberingRestartNewPageItem1.Name = "setSectionLineNumberingRestartNewPageItem1";
//
// setSectionLineNumberingRestartNewSectionItem1
//
this.setSectionLineNumberingRestartNewSectionItem1.Id = 105;
this.setSectionLineNumberingRestartNewSectionItem1.Name = "setSectionLineNumberingRestartNewSectionItem1";
//
// toggleParagraphSuppressLineNumbersItem1
//
this.toggleParagraphSuppressLineNumbersItem1.Id = 106;
this.toggleParagraphSuppressLineNumbersItem1.Name = "toggleParagraphSuppressLineNumbersItem1";
//
// showLineNumberingFormItem1
//
this.showLineNumberingFormItem1.Id = 107;
this.showLineNumberingFormItem1.Name = "showLineNumberingFormItem1";
//
// pageBackgroundRibbonPageGroup1
//
this.pageBackgroundRibbonPageGroup1.ItemLinks.Add(this.changePageColorItem1);
this.pageBackgroundRibbonPageGroup1.Name = "pageBackgroundRibbonPageGroup1";
//
// changePageColorItem1
//
this.changePageColorItem1.Id = 108;
this.changePageColorItem1.Name = "changePageColorItem1";
//
// documentViewsRibbonPageGroup1
//
this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToSimpleViewItem1);
this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToDraftViewItem1);
this.documentViewsRibbonPageGroup1.ItemLinks.Add(this.switchToPrintLayoutViewItem1);
this.documentViewsRibbonPageGroup1.Name = "documentViewsRibbonPageGroup1";
//
// viewRibbonPage1
//
this.viewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.documentViewsRibbonPageGroup1,
this.showRibbonPageGroup1,
this.zoomRibbonPageGroup1,
this.viewRibbonPageGroup1,
this.mailMergeRibbonPageGroup1});
this.viewRibbonPage1.Name = "viewRibbonPage1";
//
// switchToSimpleViewItem1
//
this.switchToSimpleViewItem1.Id = 109;
this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
//
// switchToDraftViewItem1
//
this.switchToDraftViewItem1.Id = 110;
this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
//
// switchToPrintLayoutViewItem1
//
this.switchToPrintLayoutViewItem1.Id = 111;
this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
//
// showRibbonPageGroup1
//
this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowHorizontalRulerItem1);
this.showRibbonPageGroup1.ItemLinks.Add(this.toggleShowVerticalRulerItem1);
this.showRibbonPageGroup1.Name = "showRibbonPageGroup1";
//
// toggleShowHorizontalRulerItem1
//
this.toggleShowHorizontalRulerItem1.Id = 112;
this.toggleShowHorizontalRulerItem1.Name = "toggleShowHorizontalRulerItem1";
//
// toggleShowVerticalRulerItem1
//
this.toggleShowVerticalRulerItem1.Id = 113;
this.toggleShowVerticalRulerItem1.Name = "toggleShowVerticalRulerItem1";
//
// zoomRibbonPageGroup1
//
this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomOutItem1);
this.zoomRibbonPageGroup1.ItemLinks.Add(this.zoomInItem1);
this.zoomRibbonPageGroup1.Name = "zoomRibbonPageGroup1";
//
// zoomOutItem1
//
this.zoomOutItem1.Id = 114;
this.zoomOutItem1.Name = "zoomOutItem1";
//
// zoomInItem1
//
this.zoomInItem1.Id = 115;
this.zoomInItem1.Name = "zoomInItem1";
//
// viewRibbonPageGroup1
//
this.viewRibbonPageGroup1.ItemLinks.Add(this.snapBarToolbarsListItem1);
this.viewRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem1);
this.viewRibbonPageGroup1.Name = "viewRibbonPageGroup1";
//
// snapBarToolbarsListItem1
//
this.snapBarToolbarsListItem1.Caption = "&Windows";
this.snapBarToolbarsListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("snapBarToolbarsListItem1.Glyph")));
this.snapBarToolbarsListItem1.Id = 116;
this.snapBarToolbarsListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("snapBarToolbarsListItem1.LargeGlyph")));
this.snapBarToolbarsListItem1.Name = "snapBarToolbarsListItem1";
this.snapBarToolbarsListItem1.ShowCustomizationItem = false;
this.snapBarToolbarsListItem1.ShowDockPanels = true;
this.snapBarToolbarsListItem1.ShowToolbars = false;
//
// commandBarCheckItem1
//
this.commandBarCheckItem1.Id = 117;
this.commandBarCheckItem1.Name = "commandBarCheckItem1";
this.commandBarCheckItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.HighlightActiveElement;
//
// mailMergeRibbonPageGroup1
//
this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldCodesItem1);
this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.showAllFieldResultsItem1);
this.mailMergeRibbonPageGroup1.ItemLinks.Add(this.toggleFieldHighlightingItem1);
this.mailMergeRibbonPageGroup1.Name = "mailMergeRibbonPageGroup1";
//
// showAllFieldCodesItem1
//
this.showAllFieldCodesItem1.Id = 118;
this.showAllFieldCodesItem1.Name = "showAllFieldCodesItem1";
//
// showAllFieldResultsItem1
//
this.showAllFieldResultsItem1.Id = 119;
this.showAllFieldResultsItem1.Name = "showAllFieldResultsItem1";
//
// toggleFieldHighlightingItem1
//
this.toggleFieldHighlightingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.Glyph")));
this.toggleFieldHighlightingItem1.Id = 120;
this.toggleFieldHighlightingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFieldHighlightingItem1.LargeGlyph")));
this.toggleFieldHighlightingItem1.Name = "toggleFieldHighlightingItem1";
//
// headerFooterToolsDesignNavigationRibbonPageGroup1
//
this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageHeaderItem1);
this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPageFooterItem1);
this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToNextHeaderFooterItem1);
this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.goToPreviousHeaderFooterItem1);
this.headerFooterToolsDesignNavigationRibbonPageGroup1.ItemLinks.Add(this.toggleLinkToPreviousItem1);
this.headerFooterToolsDesignNavigationRibbonPageGroup1.Name = "headerFooterToolsDesignNavigationRibbonPageGroup1";
//
// headerFooterToolsDesignRibbonPage1
//
this.headerFooterToolsDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.headerFooterToolsDesignNavigationRibbonPageGroup1,
this.headerFooterToolsDesignOptionsRibbonPageGroup1,
this.headerFooterToolsDesignCloseRibbonPageGroup1});
this.headerFooterToolsDesignRibbonPage1.Name = "headerFooterToolsDesignRibbonPage1";
//
// headerFooterToolsRibbonPageCategory1
//
this.headerFooterToolsRibbonPageCategory1.Control = this.snapControl1;
this.headerFooterToolsRibbonPageCategory1.Name = "headerFooterToolsRibbonPageCategory1";
this.headerFooterToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
this.headerFooterToolsDesignRibbonPage1});
//
// goToPageHeaderItem1
//
this.goToPageHeaderItem1.Id = 121;
this.goToPageHeaderItem1.Name = "goToPageHeaderItem1";
//
// goToPageFooterItem1
//
this.goToPageFooterItem1.Id = 122;
this.goToPageFooterItem1.Name = "goToPageFooterItem1";
//
// goToNextHeaderFooterItem1
//
this.goToNextHeaderFooterItem1.Id = 123;
this.goToNextHeaderFooterItem1.Name = "goToNextHeaderFooterItem1";
//
// goToPreviousHeaderFooterItem1
//
this.goToPreviousHeaderFooterItem1.Id = 124;
this.goToPreviousHeaderFooterItem1.Name = "goToPreviousHeaderFooterItem1";
//
// toggleLinkToPreviousItem1
//
this.toggleLinkToPreviousItem1.Id = 125;
this.toggleLinkToPreviousItem1.Name = "toggleLinkToPreviousItem1";
//
// headerFooterToolsDesignOptionsRibbonPageGroup1
//
this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentFirstPageItem1);
this.headerFooterToolsDesignOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleDifferentOddAndEvenPagesItem1);
this.headerFooterToolsDesignOptionsRibbonPageGroup1.Name = "headerFooterToolsDesignOptionsRibbonPageGroup1";
//
// toggleDifferentFirstPageItem1
//
this.toggleDifferentFirstPageItem1.Id = 126;
this.toggleDifferentFirstPageItem1.Name = "toggleDifferentFirstPageItem1";
//
// toggleDifferentOddAndEvenPagesItem1
//
this.toggleDifferentOddAndEvenPagesItem1.Id = 127;
this.toggleDifferentOddAndEvenPagesItem1.Name = "toggleDifferentOddAndEvenPagesItem1";
//
// headerFooterToolsDesignCloseRibbonPageGroup1
//
this.headerFooterToolsDesignCloseRibbonPageGroup1.ItemLinks.Add(this.closePageHeaderFooterItem1);
this.headerFooterToolsDesignCloseRibbonPageGroup1.Name = "headerFooterToolsDesignCloseRibbonPageGroup1";
//
// closePageHeaderFooterItem1
//
this.closePageHeaderFooterItem1.Id = 128;
this.closePageHeaderFooterItem1.Name = "closePageHeaderFooterItem1";
//
// tableStyleOptionsRibbonPageGroup1
//
this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstRowItem1);
this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastRowItem1);
this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedRowsItem1);
this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleFirstColumnItem1);
this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleLastColumnItem1);
this.tableStyleOptionsRibbonPageGroup1.ItemLinks.Add(this.toggleBandedColumnItem1);
this.tableStyleOptionsRibbonPageGroup1.Name = "tableStyleOptionsRibbonPageGroup1";
//
// tableDesignRibbonPage1
//
this.tableDesignRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.tableStyleOptionsRibbonPageGroup1,
this.tableStylesRibbonPageGroup1,
this.tableCellStylesRibbonPageGroup1,
this.tableDrawBordersRibbonPageGroup1});
this.tableDesignRibbonPage1.Name = "tableDesignRibbonPage1";
//
// tableToolsRibbonPageCategory1
//
this.tableToolsRibbonPageCategory1.Control = this.snapControl1;
this.tableToolsRibbonPageCategory1.Name = "tableToolsRibbonPageCategory1";
this.tableToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
this.tableDesignRibbonPage1,
this.tableLayoutRibbonPage1});
//
// toggleFirstRowItem1
//
this.toggleFirstRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
this.toggleFirstRowItem1.Id = 129;
this.toggleFirstRowItem1.Name = "toggleFirstRowItem1";
//
// toggleLastRowItem1
//
this.toggleLastRowItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
this.toggleLastRowItem1.Id = 130;
this.toggleLastRowItem1.Name = "toggleLastRowItem1";
//
// toggleBandedRowsItem1
//
this.toggleBandedRowsItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
this.toggleBandedRowsItem1.Id = 131;
this.toggleBandedRowsItem1.Name = "toggleBandedRowsItem1";
//
// toggleFirstColumnItem1
//
this.toggleFirstColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
this.toggleFirstColumnItem1.Id = 132;
this.toggleFirstColumnItem1.Name = "toggleFirstColumnItem1";
//
// toggleLastColumnItem1
//
this.toggleLastColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
this.toggleLastColumnItem1.Id = 133;
this.toggleLastColumnItem1.Name = "toggleLastColumnItem1";
//
// toggleBandedColumnItem1
//
this.toggleBandedColumnItem1.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
this.toggleBandedColumnItem1.Id = 134;
this.toggleBandedColumnItem1.Name = "toggleBandedColumnItem1";
//
// tableStylesRibbonPageGroup1
//
this.tableStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableStyleItem1);
this.tableStylesRibbonPageGroup1.Name = "tableStylesRibbonPageGroup1";
//
// galleryChangeTableStyleItem1
//
this.galleryChangeTableStyleItem1.CurrentItem = null;
this.galleryChangeTableStyleItem1.CurrentStyle = null;
this.galleryChangeTableStyleItem1.DeleteItemLink = null;
//
//
//
this.galleryChangeTableStyleItem1.Gallery.ColumnCount = 3;
this.galleryChangeTableStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
galleryItemGroup2});
this.galleryChangeTableStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
this.galleryChangeTableStyleItem1.Id = 135;
this.galleryChangeTableStyleItem1.ModifyItemLink = null;
this.galleryChangeTableStyleItem1.Name = "galleryChangeTableStyleItem1";
this.galleryChangeTableStyleItem1.NewItemLink = null;
//
// tableCellStylesRibbonPageGroup1
//
this.tableCellStylesRibbonPageGroup1.ItemLinks.Add(this.galleryChangeTableCellStyleItem1);
this.tableCellStylesRibbonPageGroup1.Name = "tableCellStylesRibbonPageGroup1";
//
// galleryChangeTableCellStyleItem1
//
this.galleryChangeTableCellStyleItem1.CurrentCellStyle = null;
this.galleryChangeTableCellStyleItem1.CurrentItem = null;
this.galleryChangeTableCellStyleItem1.DeleteItemLink = null;
//
//
//
this.galleryChangeTableCellStyleItem1.Gallery.ColumnCount = 3;
this.galleryChangeTableCellStyleItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
galleryItemGroup3});
this.galleryChangeTableCellStyleItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
this.galleryChangeTableCellStyleItem1.Id = 136;
this.galleryChangeTableCellStyleItem1.ModifyItemLink = null;
this.galleryChangeTableCellStyleItem1.Name = "galleryChangeTableCellStyleItem1";
this.galleryChangeTableCellStyleItem1.NewItemLink = null;
//
// tableDrawBordersRibbonPageGroup1
//
this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineStyleItem1);
this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderLineWeightItem1);
this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBorderColorItem1);
this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableBordersItem1);
this.tableDrawBordersRibbonPageGroup1.ItemLinks.Add(this.changeTableCellsShadingItem1);
this.tableDrawBordersRibbonPageGroup1.Name = "tableDrawBordersRibbonPageGroup1";
//
// changeTableBorderLineStyleItem1
//
this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
borderInfo1.Color = System.Drawing.Color.Black;
borderInfo1.Frame = false;
borderInfo1.Offset = 0;
borderInfo1.Shadow = false;
borderInfo1.Style = DevExpress.XtraRichEdit.Model.BorderLineStyle.Single;
borderInfo1.Width = 10;
this.changeTableBorderLineStyleItem1.EditValue = borderInfo1;
this.changeTableBorderLineStyleItem1.Id = 137;
this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
//
// changeTableBorderLineWeightItem1
//
this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
this.changeTableBorderLineWeightItem1.EditValue = 20;
this.changeTableBorderLineWeightItem1.Id = 138;
this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
//
// changeTableBorderColorItem1
//
this.changeTableBorderColorItem1.Id = 139;
this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
//
// changeTableBordersItem1
//
this.changeTableBordersItem1.Id = 140;
this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1)});
this.changeTableBordersItem1.Name = "changeTableBordersItem1";
//
// toggleTableCellsBottomBorderItem1
//
this.toggleTableCellsBottomBorderItem1.Id = 141;
this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
//
// toggleTableCellsTopBorderItem1
//
this.toggleTableCellsTopBorderItem1.Id = 142;
this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
//
// toggleTableCellsLeftBorderItem1
//
this.toggleTableCellsLeftBorderItem1.Id = 143;
this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
//
// toggleTableCellsRightBorderItem1
//
this.toggleTableCellsRightBorderItem1.Id = 144;
this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
//
// resetTableCellsAllBordersItem1
//
this.resetTableCellsAllBordersItem1.Id = 145;
this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
//
// toggleTableCellsAllBordersItem1
//
this.toggleTableCellsAllBordersItem1.Id = 146;
this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
//
// toggleTableCellsOutsideBorderItem1
//
this.toggleTableCellsOutsideBorderItem1.Id = 147;
this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
//
// toggleTableCellsInsideBorderItem1
//
this.toggleTableCellsInsideBorderItem1.Id = 148;
this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
//
// toggleTableCellsInsideHorizontalBorderItem1
//
this.toggleTableCellsInsideHorizontalBorderItem1.Id = 149;
this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
//
// toggleTableCellsInsideVerticalBorderItem1
//
this.toggleTableCellsInsideVerticalBorderItem1.Id = 150;
this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
//
// toggleShowTableGridLinesItem1
//
this.toggleShowTableGridLinesItem1.Id = 151;
this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
//
// changeTableCellsShadingItem1
//
this.changeTableCellsShadingItem1.Id = 152;
this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
//
// repositoryItemBorderLineStyle1
//
this.repositoryItemBorderLineStyle1.AutoHeight = false;
this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repositoryItemBorderLineStyle1.Control = this.snapControl1;
this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
//
// repositoryItemBorderLineWeight1
//
this.repositoryItemBorderLineWeight1.AutoHeight = false;
this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repositoryItemBorderLineWeight1.Control = this.snapControl1;
this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
//
// tableTableRibbonPageGroup1
//
this.tableTableRibbonPageGroup1.ItemLinks.Add(this.selectTableElementsItem1);
this.tableTableRibbonPageGroup1.ItemLinks.Add(this.toggleShowTableGridLinesItem1);
this.tableTableRibbonPageGroup1.ItemLinks.Add(this.showTablePropertiesFormItem1);
this.tableTableRibbonPageGroup1.Name = "tableTableRibbonPageGroup1";
//
// tableLayoutRibbonPage1
//
this.tableLayoutRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.tableTableRibbonPageGroup1,
this.tableRowsAndColumnsRibbonPageGroup1,
this.tableMergeRibbonPageGroup1,
this.tableCellSizeRibbonPageGroup1,
this.tableAlignmentRibbonPageGroup1});
this.tableLayoutRibbonPage1.Name = "tableLayoutRibbonPage1";
//
// selectTableElementsItem1
//
this.selectTableElementsItem1.Id = 153;
this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
this.selectTableElementsItem1.Name = "selectTableElementsItem1";
//
// selectTableCellItem1
//
this.selectTableCellItem1.Id = 154;
this.selectTableCellItem1.Name = "selectTableCellItem1";
//
// selectTableColumnItem1
//
this.selectTableColumnItem1.Id = 155;
this.selectTableColumnItem1.Name = "selectTableColumnItem1";
//
// selectTableRowItem1
//
this.selectTableRowItem1.Id = 156;
this.selectTableRowItem1.Name = "selectTableRowItem1";
//
// selectTableItem1
//
this.selectTableItem1.Id = 157;
this.selectTableItem1.Name = "selectTableItem1";
//
// showTablePropertiesFormItem1
//
this.showTablePropertiesFormItem1.Id = 158;
this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
//
// tableRowsAndColumnsRibbonPageGroup1
//
this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.deleteTableElementsItem1);
this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowAboveItem1);
this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableRowBelowItem1);
this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToLeftItem1);
this.tableRowsAndColumnsRibbonPageGroup1.ItemLinks.Add(this.insertTableColumnToRightItem1);
this.tableRowsAndColumnsRibbonPageGroup1.Name = "tableRowsAndColumnsRibbonPageGroup1";
//
// deleteTableElementsItem1
//
this.deleteTableElementsItem1.Id = 159;
this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
//
// showDeleteTableCellsFormItem1
//
this.showDeleteTableCellsFormItem1.Id = 160;
this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
//
// deleteTableColumnsItem1
//
this.deleteTableColumnsItem1.Id = 161;
this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
//
// deleteTableRowsItem1
//
this.deleteTableRowsItem1.Id = 162;
this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
//
// deleteTableItem1
//
this.deleteTableItem1.Id = 163;
this.deleteTableItem1.Name = "deleteTableItem1";
//
// insertTableRowAboveItem1
//
this.insertTableRowAboveItem1.Id = 164;
this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
//
// insertTableRowBelowItem1
//
this.insertTableRowBelowItem1.Id = 165;
this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
//
// insertTableColumnToLeftItem1
//
this.insertTableColumnToLeftItem1.Id = 166;
this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
//
// insertTableColumnToRightItem1
//
this.insertTableColumnToRightItem1.Id = 167;
this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
//
// tableMergeRibbonPageGroup1
//
this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.mergeTableCellsItem1);
this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.showSplitTableCellsForm1);
this.tableMergeRibbonPageGroup1.ItemLinks.Add(this.splitTableItem1);
this.tableMergeRibbonPageGroup1.Name = "tableMergeRibbonPageGroup1";
//
// mergeTableCellsItem1
//
this.mergeTableCellsItem1.Id = 168;
this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
//
// showSplitTableCellsForm1
//
this.showSplitTableCellsForm1.Id = 169;
this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
//
// splitTableItem1
//
this.splitTableItem1.Id = 170;
this.splitTableItem1.Name = "splitTableItem1";
//
// tableCellSizeRibbonPageGroup1
//
this.tableCellSizeRibbonPageGroup1.ItemLinks.Add(this.toggleTableAutoFitItem1);
this.tableCellSizeRibbonPageGroup1.Name = "tableCellSizeRibbonPageGroup1";
//
// toggleTableAutoFitItem1
//
this.toggleTableAutoFitItem1.Id = 171;
this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
//
// toggleTableAutoFitContentsItem1
//
this.toggleTableAutoFitContentsItem1.Id = 172;
this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
//
// toggleTableAutoFitWindowItem1
//
this.toggleTableAutoFitWindowItem1.Id = 173;
this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
//
// toggleTableFixedColumnWidthItem1
//
this.toggleTableFixedColumnWidthItem1.Id = 174;
this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
//
// tableAlignmentRibbonPageGroup1
//
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopLeftAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopCenterAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsTopRightAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.toggleTableCellsBottomRightAlignmentItem1);
this.tableAlignmentRibbonPageGroup1.ItemLinks.Add(this.showTableOptionsFormItem1);
this.tableAlignmentRibbonPageGroup1.Name = "tableAlignmentRibbonPageGroup1";
//
// toggleTableCellsTopLeftAlignmentItem1
//
this.toggleTableCellsTopLeftAlignmentItem1.Id = 175;
this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
//
// toggleTableCellsMiddleLeftAlignmentItem1
//
this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 176;
this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
//
// toggleTableCellsBottomLeftAlignmentItem1
//
this.toggleTableCellsBottomLeftAlignmentItem1.Id = 177;
this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
//
// toggleTableCellsTopCenterAlignmentItem1
//
this.toggleTableCellsTopCenterAlignmentItem1.Id = 178;
this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
//
// toggleTableCellsMiddleCenterAlignmentItem1
//
this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 179;
this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
//
// toggleTableCellsBottomCenterAlignmentItem1
//
this.toggleTableCellsBottomCenterAlignmentItem1.Id = 180;
this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
//
// toggleTableCellsTopRightAlignmentItem1
//
this.toggleTableCellsTopRightAlignmentItem1.Id = 181;
this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
//
// toggleTableCellsMiddleRightAlignmentItem1
//
this.toggleTableCellsMiddleRightAlignmentItem1.Id = 182;
this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
//
// toggleTableCellsBottomRightAlignmentItem1
//
this.toggleTableCellsBottomRightAlignmentItem1.Id = 183;
this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
//
// showTableOptionsFormItem1
//
this.showTableOptionsFormItem1.Id = 184;
this.showTableOptionsFormItem1.Name = "showTableOptionsFormItem1";
//
// documentProofingRibbonPageGroup1
//
this.documentProofingRibbonPageGroup1.ItemLinks.Add(this.checkSpellingItem1);
this.documentProofingRibbonPageGroup1.Name = "documentProofingRibbonPageGroup1";
//
// reviewRibbonPage1
//
this.reviewRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.documentProofingRibbonPageGroup1});
this.reviewRibbonPage1.Name = "reviewRibbonPage1";
//
// checkSpellingItem1
//
this.checkSpellingItem1.Id = 185;
this.checkSpellingItem1.Name = "checkSpellingItem1";
//
// tableOfContentsRibbonPageGroup1
//
this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfContentsItem1);
this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfContentsItem1);
this.tableOfContentsRibbonPageGroup1.ItemLinks.Add(this.addParagraphsToTableOfContentItem1);
this.tableOfContentsRibbonPageGroup1.Name = "tableOfContentsRibbonPageGroup1";
//
// referencesRibbonPage1
//
this.referencesRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.tableOfContentsRibbonPageGroup1,
this.captionsRibbonPageGroup1});
this.referencesRibbonPage1.Name = "referencesRibbonPage1";
//
// insertTableOfContentsItem1
//
this.insertTableOfContentsItem1.Id = 186;
this.insertTableOfContentsItem1.Name = "insertTableOfContentsItem1";
//
// updateTableOfContentsItem1
//
this.updateTableOfContentsItem1.Id = 187;
this.updateTableOfContentsItem1.Name = "updateTableOfContentsItem1";
//
// addParagraphsToTableOfContentItem1
//
this.addParagraphsToTableOfContentItem1.Id = 188;
this.addParagraphsToTableOfContentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem2),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem3),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem4),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem5),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem6),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem7),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem8),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem9),
new DevExpress.XtraBars.LinkPersistInfo(this.setParagraphHeadingLevelItem10)});
this.addParagraphsToTableOfContentItem1.Name = "addParagraphsToTableOfContentItem1";
//
// setParagraphHeadingLevelItem1
//
this.setParagraphHeadingLevelItem1.Id = 189;
this.setParagraphHeadingLevelItem1.Name = "setParagraphHeadingLevelItem1";
this.setParagraphHeadingLevelItem1.OutlineLevel = 0;
//
// setParagraphHeadingLevelItem2
//
this.setParagraphHeadingLevelItem2.Id = 190;
this.setParagraphHeadingLevelItem2.Name = "setParagraphHeadingLevelItem2";
this.setParagraphHeadingLevelItem2.OutlineLevel = 1;
//
// setParagraphHeadingLevelItem3
//
this.setParagraphHeadingLevelItem3.Id = 191;
this.setParagraphHeadingLevelItem3.Name = "setParagraphHeadingLevelItem3";
this.setParagraphHeadingLevelItem3.OutlineLevel = 2;
//
// setParagraphHeadingLevelItem4
//
this.setParagraphHeadingLevelItem4.Id = 192;
this.setParagraphHeadingLevelItem4.Name = "setParagraphHeadingLevelItem4";
this.setParagraphHeadingLevelItem4.OutlineLevel = 3;
//
// setParagraphHeadingLevelItem5
//
this.setParagraphHeadingLevelItem5.Id = 193;
this.setParagraphHeadingLevelItem5.Name = "setParagraphHeadingLevelItem5";
this.setParagraphHeadingLevelItem5.OutlineLevel = 4;
//
// setParagraphHeadingLevelItem6
//
this.setParagraphHeadingLevelItem6.Id = 194;
this.setParagraphHeadingLevelItem6.Name = "setParagraphHeadingLevelItem6";
this.setParagraphHeadingLevelItem6.OutlineLevel = 5;
//
// setParagraphHeadingLevelItem7
//
this.setParagraphHeadingLevelItem7.Id = 195;
this.setParagraphHeadingLevelItem7.Name = "setParagraphHeadingLevelItem7";
this.setParagraphHeadingLevelItem7.OutlineLevel = 6;
//
// setParagraphHeadingLevelItem8
//
this.setParagraphHeadingLevelItem8.Id = 196;
this.setParagraphHeadingLevelItem8.Name = "setParagraphHeadingLevelItem8";
this.setParagraphHeadingLevelItem8.OutlineLevel = 7;
//
// setParagraphHeadingLevelItem9
//
this.setParagraphHeadingLevelItem9.Id = 197;
this.setParagraphHeadingLevelItem9.Name = "setParagraphHeadingLevelItem9";
this.setParagraphHeadingLevelItem9.OutlineLevel = 8;
//
// setParagraphHeadingLevelItem10
//
this.setParagraphHeadingLevelItem10.Id = 198;
this.setParagraphHeadingLevelItem10.Name = "setParagraphHeadingLevelItem10";
this.setParagraphHeadingLevelItem10.OutlineLevel = 9;
//
// captionsRibbonPageGroup1
//
this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertCaptionPlaceholderItem1);
this.captionsRibbonPageGroup1.ItemLinks.Add(this.insertTableOfFiguresPlaceholderItem1);
this.captionsRibbonPageGroup1.ItemLinks.Add(this.updateTableOfContentsItem1);
this.captionsRibbonPageGroup1.Name = "captionsRibbonPageGroup1";
//
// insertCaptionPlaceholderItem1
//
this.insertCaptionPlaceholderItem1.Id = 199;
this.insertCaptionPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.insertFiguresCaptionItems1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertTablesCaptionItems1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertEquationsCaptionItems1)});
this.insertCaptionPlaceholderItem1.Name = "insertCaptionPlaceholderItem1";
//
// insertFiguresCaptionItems1
//
this.insertFiguresCaptionItems1.Id = 200;
this.insertFiguresCaptionItems1.Name = "insertFiguresCaptionItems1";
//
// insertTablesCaptionItems1
//
this.insertTablesCaptionItems1.Id = 201;
this.insertTablesCaptionItems1.Name = "insertTablesCaptionItems1";
//
// insertEquationsCaptionItems1
//
this.insertEquationsCaptionItems1.Id = 202;
this.insertEquationsCaptionItems1.Name = "insertEquationsCaptionItems1";
//
// insertTableOfFiguresPlaceholderItem1
//
this.insertTableOfFiguresPlaceholderItem1.Id = 203;
this.insertTableOfFiguresPlaceholderItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfFiguresItems1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfTablesItems1),
new DevExpress.XtraBars.LinkPersistInfo(this.insertTableOfEquationsItems1)});
this.insertTableOfFiguresPlaceholderItem1.Name = "insertTableOfFiguresPlaceholderItem1";
//
// insertTableOfFiguresItems1
//
this.insertTableOfFiguresItems1.Id = 204;
this.insertTableOfFiguresItems1.Name = "insertTableOfFiguresItems1";
//
// insertTableOfTablesItems1
//
this.insertTableOfTablesItems1.Id = 205;
this.insertTableOfTablesItems1.Name = "insertTableOfTablesItems1";
//
// insertTableOfEquationsItems1
//
this.insertTableOfEquationsItems1.Id = 206;
this.insertTableOfEquationsItems1.Name = "insertTableOfEquationsItems1";
//
// floatingPictureToolsShapeStylesPageGroup1
//
this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectFillColorItem1);
this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineColorItem1);
this.floatingPictureToolsShapeStylesPageGroup1.ItemLinks.Add(this.changeFloatingObjectOutlineWeightItem1);
this.floatingPictureToolsShapeStylesPageGroup1.Name = "floatingPictureToolsShapeStylesPageGroup1";
//
// floatingPictureToolsFormatPage1
//
this.floatingPictureToolsFormatPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.floatingPictureToolsShapeStylesPageGroup1,
this.floatingPictureToolsArrangePageGroup1});
this.floatingPictureToolsFormatPage1.Name = "floatingPictureToolsFormatPage1";
//
// floatingPictureToolsRibbonPageCategory1
//
this.floatingPictureToolsRibbonPageCategory1.Control = this.snapControl1;
this.floatingPictureToolsRibbonPageCategory1.Name = "floatingPictureToolsRibbonPageCategory1";
this.floatingPictureToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
this.floatingPictureToolsFormatPage1});
//
// changeFloatingObjectFillColorItem1
//
this.changeFloatingObjectFillColorItem1.Id = 207;
this.changeFloatingObjectFillColorItem1.Name = "changeFloatingObjectFillColorItem1";
//
// changeFloatingObjectOutlineColorItem1
//
this.changeFloatingObjectOutlineColorItem1.Id = 208;
this.changeFloatingObjectOutlineColorItem1.Name = "changeFloatingObjectOutlineColorItem1";
//
// changeFloatingObjectOutlineWeightItem1
//
this.changeFloatingObjectOutlineWeightItem1.Edit = this.repositoryItemFloatingObjectOutlineWeight1;
this.changeFloatingObjectOutlineWeightItem1.EditValue = 20;
this.changeFloatingObjectOutlineWeightItem1.Id = 209;
this.changeFloatingObjectOutlineWeightItem1.Name = "changeFloatingObjectOutlineWeightItem1";
//
// repositoryItemFloatingObjectOutlineWeight1
//
this.repositoryItemFloatingObjectOutlineWeight1.AutoHeight = false;
this.repositoryItemFloatingObjectOutlineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repositoryItemFloatingObjectOutlineWeight1.Control = this.snapControl1;
this.repositoryItemFloatingObjectOutlineWeight1.Name = "repositoryItemFloatingObjectOutlineWeight1";
//
// floatingPictureToolsArrangePageGroup1
//
this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectTextWrapTypeItem1);
this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.changeFloatingObjectAlignmentItem1);
this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectBringForwardSubItem1);
this.floatingPictureToolsArrangePageGroup1.ItemLinks.Add(this.floatingObjectSendBackwardSubItem1);
this.floatingPictureToolsArrangePageGroup1.Name = "floatingPictureToolsArrangePageGroup1";
//
// changeFloatingObjectTextWrapTypeItem1
//
this.changeFloatingObjectTextWrapTypeItem1.Id = 210;
this.changeFloatingObjectTextWrapTypeItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectSquareTextWrapTypeItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTightTextWrapTypeItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectThroughTextWrapTypeItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopAndBottomTextWrapTypeItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBehindTextWrapTypeItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectInFrontOfTextWrapTypeItem1)});
this.changeFloatingObjectTextWrapTypeItem1.Name = "changeFloatingObjectTextWrapTypeItem1";
//
// setFloatingObjectSquareTextWrapTypeItem1
//
this.setFloatingObjectSquareTextWrapTypeItem1.Id = 211;
this.setFloatingObjectSquareTextWrapTypeItem1.Name = "setFloatingObjectSquareTextWrapTypeItem1";
//
// setFloatingObjectTightTextWrapTypeItem1
//
this.setFloatingObjectTightTextWrapTypeItem1.Id = 212;
this.setFloatingObjectTightTextWrapTypeItem1.Name = "setFloatingObjectTightTextWrapTypeItem1";
//
// setFloatingObjectThroughTextWrapTypeItem1
//
this.setFloatingObjectThroughTextWrapTypeItem1.Id = 213;
this.setFloatingObjectThroughTextWrapTypeItem1.Name = "setFloatingObjectThroughTextWrapTypeItem1";
//
// setFloatingObjectTopAndBottomTextWrapTypeItem1
//
this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Id = 214;
this.setFloatingObjectTopAndBottomTextWrapTypeItem1.Name = "setFloatingObjectTopAndBottomTextWrapTypeItem1";
//
// setFloatingObjectBehindTextWrapTypeItem1
//
this.setFloatingObjectBehindTextWrapTypeItem1.Id = 215;
this.setFloatingObjectBehindTextWrapTypeItem1.Name = "setFloatingObjectBehindTextWrapTypeItem1";
//
// setFloatingObjectInFrontOfTextWrapTypeItem1
//
this.setFloatingObjectInFrontOfTextWrapTypeItem1.Id = 216;
this.setFloatingObjectInFrontOfTextWrapTypeItem1.Name = "setFloatingObjectInFrontOfTextWrapTypeItem1";
//
// changeFloatingObjectAlignmentItem1
//
this.changeFloatingObjectAlignmentItem1.Id = 217;
this.changeFloatingObjectAlignmentItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopLeftAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopCenterAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectTopRightAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleLeftAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleCenterAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectMiddleRightAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomLeftAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomCenterAlignmentItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.setFloatingObjectBottomRightAlignmentItem1)});
this.changeFloatingObjectAlignmentItem1.Name = "changeFloatingObjectAlignmentItem1";
//
// setFloatingObjectTopLeftAlignmentItem1
//
this.setFloatingObjectTopLeftAlignmentItem1.Id = 218;
this.setFloatingObjectTopLeftAlignmentItem1.Name = "setFloatingObjectTopLeftAlignmentItem1";
//
// setFloatingObjectTopCenterAlignmentItem1
//
this.setFloatingObjectTopCenterAlignmentItem1.Id = 219;
this.setFloatingObjectTopCenterAlignmentItem1.Name = "setFloatingObjectTopCenterAlignmentItem1";
//
// setFloatingObjectTopRightAlignmentItem1
//
this.setFloatingObjectTopRightAlignmentItem1.Id = 220;
this.setFloatingObjectTopRightAlignmentItem1.Name = "setFloatingObjectTopRightAlignmentItem1";
//
// setFloatingObjectMiddleLeftAlignmentItem1
//
this.setFloatingObjectMiddleLeftAlignmentItem1.Id = 221;
this.setFloatingObjectMiddleLeftAlignmentItem1.Name = "setFloatingObjectMiddleLeftAlignmentItem1";
//
// setFloatingObjectMiddleCenterAlignmentItem1
//
this.setFloatingObjectMiddleCenterAlignmentItem1.Id = 222;
this.setFloatingObjectMiddleCenterAlignmentItem1.Name = "setFloatingObjectMiddleCenterAlignmentItem1";
//
// setFloatingObjectMiddleRightAlignmentItem1
//
this.setFloatingObjectMiddleRightAlignmentItem1.Id = 223;
this.setFloatingObjectMiddleRightAlignmentItem1.Name = "setFloatingObjectMiddleRightAlignmentItem1";
//
// setFloatingObjectBottomLeftAlignmentItem1
//
this.setFloatingObjectBottomLeftAlignmentItem1.Id = 224;
this.setFloatingObjectBottomLeftAlignmentItem1.Name = "setFloatingObjectBottomLeftAlignmentItem1";
//
// setFloatingObjectBottomCenterAlignmentItem1
//
this.setFloatingObjectBottomCenterAlignmentItem1.Id = 225;
this.setFloatingObjectBottomCenterAlignmentItem1.Name = "setFloatingObjectBottomCenterAlignmentItem1";
//
// setFloatingObjectBottomRightAlignmentItem1
//
this.setFloatingObjectBottomRightAlignmentItem1.Id = 226;
this.setFloatingObjectBottomRightAlignmentItem1.Name = "setFloatingObjectBottomRightAlignmentItem1";
//
// floatingObjectBringForwardSubItem1
//
this.floatingObjectBringForwardSubItem1.Id = 227;
this.floatingObjectBringForwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringForwardItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringToFrontItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectBringInFrontOfTextItem1)});
this.floatingObjectBringForwardSubItem1.Name = "floatingObjectBringForwardSubItem1";
//
// floatingObjectBringForwardItem1
//
this.floatingObjectBringForwardItem1.Id = 228;
this.floatingObjectBringForwardItem1.Name = "floatingObjectBringForwardItem1";
//
// floatingObjectBringToFrontItem1
//
this.floatingObjectBringToFrontItem1.Id = 229;
this.floatingObjectBringToFrontItem1.Name = "floatingObjectBringToFrontItem1";
//
// floatingObjectBringInFrontOfTextItem1
//
this.floatingObjectBringInFrontOfTextItem1.Id = 230;
this.floatingObjectBringInFrontOfTextItem1.Name = "floatingObjectBringInFrontOfTextItem1";
//
// floatingObjectSendBackwardSubItem1
//
this.floatingObjectSendBackwardSubItem1.Id = 231;
this.floatingObjectSendBackwardSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBackwardItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendToBackItem1),
new DevExpress.XtraBars.LinkPersistInfo(this.floatingObjectSendBehindTextItem1)});
this.floatingObjectSendBackwardSubItem1.Name = "floatingObjectSendBackwardSubItem1";
//
// floatingObjectSendBackwardItem1
//
this.floatingObjectSendBackwardItem1.Id = 232;
this.floatingObjectSendBackwardItem1.Name = "floatingObjectSendBackwardItem1";
//
// floatingObjectSendToBackItem1
//
this.floatingObjectSendToBackItem1.Id = 233;
this.floatingObjectSendToBackItem1.Name = "floatingObjectSendToBackItem1";
//
// floatingObjectSendBehindTextItem1
//
this.floatingObjectSendBehindTextItem1.Id = 234;
this.floatingObjectSendBehindTextItem1.Name = "floatingObjectSendBehindTextItem1";
//
// themesRibbonPageGroup1
//
this.themesRibbonPageGroup1.ItemLinks.Add(this.themesGalleryBarItem1);
this.themesRibbonPageGroup1.Name = "themesRibbonPageGroup1";
//
// appearanceRibbonPage1
//
this.appearanceRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.themesRibbonPageGroup1});
this.appearanceRibbonPage1.Name = "appearanceRibbonPage1";
//
// dataToolsRibbonPageCategory1
//
this.dataToolsRibbonPageCategory1.Control = this.snapControl1;
this.dataToolsRibbonPageCategory1.Name = "dataToolsRibbonPageCategory1";
this.dataToolsRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
this.appearanceRibbonPage1,
this.snMergeFieldToolsRibbonPage1,
this.groupToolsRibbonPage1,
this.listToolsRibbonPage1});
//
// themesGalleryBarItem1
//
//
//
//
this.themesGalleryBarItem1.Gallery.ColumnCount = 7;
this.themesGalleryBarItem1.Gallery.ImageSize = new System.Drawing.Size(65, 46);
this.themesGalleryBarItem1.Gallery.RowCount = 1;
this.themesGalleryBarItem1.Id = 235;
this.themesGalleryBarItem1.Name = "themesGalleryBarItem1";
//
// dataShapingRibbonPageGroup1
//
this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem2);
this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem3);
this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarCheckItem4);
this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem1);
this.dataShapingRibbonPageGroup1.ItemLinks.Add(this.filterPopupButtonItem1);
this.dataShapingRibbonPageGroup1.Name = "dataShapingRibbonPageGroup1";
//
// snMergeFieldToolsRibbonPage1
//
this.snMergeFieldToolsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.dataShapingRibbonPageGroup1,
this.snMergeFieldPropertiesRibbonPageGroup1});
this.snMergeFieldToolsRibbonPage1.Name = "snMergeFieldToolsRibbonPage1";
//
// commandBarCheckItem2
//
this.commandBarCheckItem2.Id = 236;
this.commandBarCheckItem2.Name = "commandBarCheckItem2";
this.commandBarCheckItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
this.commandBarCheckItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupByField;
//
// commandBarCheckItem3
//
this.commandBarCheckItem3.Id = 237;
this.commandBarCheckItem3.Name = "commandBarCheckItem3";
this.commandBarCheckItem3.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SortFieldAscending;
//
// commandBarCheckItem4
//
this.commandBarCheckItem4.Id = 238;
this.commandBarCheckItem4.Name = "commandBarCheckItem4";
this.commandBarCheckItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SortFieldDescending;
//
// commandBarSubItem1
//
this.commandBarSubItem1.Id = 239;
this.commandBarSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem5),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem6),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem7),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem8),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem9)});
this.commandBarSubItem1.Name = "commandBarSubItem1";
this.commandBarSubItem1.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryByField;
//
// commandBarCheckItem5
//
this.commandBarCheckItem5.Id = 240;
this.commandBarCheckItem5.Name = "commandBarCheckItem5";
this.commandBarCheckItem5.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryCount;
//
// commandBarCheckItem6
//
this.commandBarCheckItem6.Id = 241;
this.commandBarCheckItem6.Name = "commandBarCheckItem6";
this.commandBarCheckItem6.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummarySum;
//
// commandBarCheckItem7
//
this.commandBarCheckItem7.Id = 242;
this.commandBarCheckItem7.Name = "commandBarCheckItem7";
this.commandBarCheckItem7.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryAverage;
//
// commandBarCheckItem8
//
this.commandBarCheckItem8.Id = 243;
this.commandBarCheckItem8.Name = "commandBarCheckItem8";
this.commandBarCheckItem8.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryMax;
//
// commandBarCheckItem9
//
this.commandBarCheckItem9.Id = 244;
this.commandBarCheckItem9.Name = "commandBarCheckItem9";
this.commandBarCheckItem9.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.SummaryMin;
//
// filterPopupButtonItem1
//
this.filterPopupButtonItem1.ActAsDropDown = true;
this.filterPopupButtonItem1.Id = 245;
this.filterPopupButtonItem1.Name = "filterPopupButtonItem1";
//
// snMergeFieldPropertiesRibbonPageGroup1
//
this.snMergeFieldPropertiesRibbonPageGroup1.ItemLinks.Add(this.propertiesBarButtonItem1);
this.snMergeFieldPropertiesRibbonPageGroup1.Name = "snMergeFieldPropertiesRibbonPageGroup1";
//
// propertiesBarButtonItem1
//
this.propertiesBarButtonItem1.ActAsDropDown = true;
this.propertiesBarButtonItem1.Id = 246;
this.propertiesBarButtonItem1.Name = "propertiesBarButtonItem1";
this.propertiesBarButtonItem1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
//
// groupingRibbonPageGroup1
//
this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem2);
this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem3);
this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarItem6);
this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarItem7);
this.groupingRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem4);
this.groupingRibbonPageGroup1.Name = "groupingRibbonPageGroup1";
//
// groupToolsRibbonPage1
//
this.groupToolsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.groupingRibbonPageGroup1});
this.groupToolsRibbonPage1.Name = "groupToolsRibbonPage1";
//
// commandBarSubItem2
//
this.commandBarSubItem2.Id = 247;
this.commandBarSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem10),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem11)});
this.commandBarSubItem2.Name = "commandBarSubItem2";
this.commandBarSubItem2.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
this.commandBarSubItem2.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupHeader;
//
// commandBarCheckItem10
//
this.commandBarCheckItem10.Id = 248;
this.commandBarCheckItem10.Name = "commandBarCheckItem10";
this.commandBarCheckItem10.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertGroupHeader;
//
// commandBarCheckItem11
//
this.commandBarCheckItem11.Id = 249;
this.commandBarCheckItem11.Name = "commandBarCheckItem11";
this.commandBarCheckItem11.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveGroupHeader;
//
// commandBarSubItem3
//
this.commandBarSubItem3.Id = 250;
this.commandBarSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem12),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem13)});
this.commandBarSubItem3.Name = "commandBarSubItem3";
this.commandBarSubItem3.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupFooter;
//
// commandBarCheckItem12
//
this.commandBarCheckItem12.Id = 251;
this.commandBarCheckItem12.Name = "commandBarCheckItem12";
this.commandBarCheckItem12.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertGroupFooter;
//
// commandBarCheckItem13
//
this.commandBarCheckItem13.Id = 252;
this.commandBarCheckItem13.Name = "commandBarCheckItem13";
this.commandBarCheckItem13.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveGroupFooter;
//
// commandBarItem6
//
this.commandBarItem6.Id = 253;
this.commandBarItem6.Name = "commandBarItem6";
this.commandBarItem6.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.GroupFieldsCollection;
//
// commandBarItem7
//
this.commandBarItem7.Id = 254;
this.commandBarItem7.Name = "commandBarItem7";
this.commandBarItem7.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ShowReportStructureEditorForm;
//
// commandBarSubItem4
//
this.commandBarSubItem4.Id = 255;
this.commandBarSubItem4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem14),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem15),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem16),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem17),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem18),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem19),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem20)});
this.commandBarSubItem4.Name = "commandBarSubItem4";
this.commandBarSubItem4.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertGroupSeparator;
//
// commandBarCheckItem14
//
this.commandBarCheckItem14.Id = 256;
this.commandBarCheckItem14.Name = "commandBarCheckItem14";
this.commandBarCheckItem14.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertPageBreakGroupSeparator;
//
// commandBarCheckItem15
//
this.commandBarCheckItem15.Id = 257;
this.commandBarCheckItem15.Name = "commandBarCheckItem15";
this.commandBarCheckItem15.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakNextPageGroupSeparator;
//
// commandBarCheckItem16
//
this.commandBarCheckItem16.Id = 258;
this.commandBarCheckItem16.Name = "commandBarCheckItem16";
this.commandBarCheckItem16.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakEvenPageGroupSeparator;
//
// commandBarCheckItem17
//
this.commandBarCheckItem17.Id = 259;
this.commandBarCheckItem17.Name = "commandBarCheckItem17";
this.commandBarCheckItem17.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakOddPageGroupSeparator;
//
// commandBarCheckItem18
//
this.commandBarCheckItem18.Id = 260;
this.commandBarCheckItem18.Name = "commandBarCheckItem18";
this.commandBarCheckItem18.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyParagraphGroupSeparator;
//
// commandBarCheckItem19
//
this.commandBarCheckItem19.Id = 261;
this.commandBarCheckItem19.Name = "commandBarCheckItem19";
this.commandBarCheckItem19.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyRowGroupSeparator;
//
// commandBarCheckItem20
//
this.commandBarCheckItem20.Id = 262;
this.commandBarCheckItem20.Name = "commandBarCheckItem20";
this.commandBarCheckItem20.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertNoneGroupSeparator;
//
// listHeaderAndFooterRibbonPageGroup1
//
this.listHeaderAndFooterRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem5);
this.listHeaderAndFooterRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem6);
this.listHeaderAndFooterRibbonPageGroup1.Name = "listHeaderAndFooterRibbonPageGroup1";
//
// listToolsRibbonPage1
//
this.listToolsRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.listHeaderAndFooterRibbonPageGroup1,
this.listCommandsRibbonPageGroup1,
this.listEditorRowLimitRibbonPageGroup1});
this.listToolsRibbonPage1.Name = "listToolsRibbonPage1";
//
// commandBarSubItem5
//
this.commandBarSubItem5.Id = 263;
this.commandBarSubItem5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem21),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem22)});
this.commandBarSubItem5.Name = "commandBarSubItem5";
this.commandBarSubItem5.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
this.commandBarSubItem5.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ListHeader;
//
// commandBarCheckItem21
//
this.commandBarCheckItem21.Id = 264;
this.commandBarCheckItem21.Name = "commandBarCheckItem21";
this.commandBarCheckItem21.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertListHeader;
//
// commandBarCheckItem22
//
this.commandBarCheckItem22.Id = 265;
this.commandBarCheckItem22.Name = "commandBarCheckItem22";
this.commandBarCheckItem22.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveListHeader;
//
// commandBarSubItem6
//
this.commandBarSubItem6.Id = 266;
this.commandBarSubItem6.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem23),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem24)});
this.commandBarSubItem6.Name = "commandBarSubItem6";
this.commandBarSubItem6.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
this.commandBarSubItem6.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ListFooter;
//
// commandBarCheckItem23
//
this.commandBarCheckItem23.Id = 267;
this.commandBarCheckItem23.Name = "commandBarCheckItem23";
this.commandBarCheckItem23.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertListFooter;
//
// commandBarCheckItem24
//
this.commandBarCheckItem24.Id = 268;
this.commandBarCheckItem24.Name = "commandBarCheckItem24";
this.commandBarCheckItem24.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.RemoveListFooter;
//
// listCommandsRibbonPageGroup1
//
this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem8);
this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem9);
this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem10);
this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarSubItem7);
this.listCommandsRibbonPageGroup1.ItemLinks.Add(this.commandBarItem11);
this.listCommandsRibbonPageGroup1.Name = "listCommandsRibbonPageGroup1";
//
// commandBarItem8
//
this.commandBarItem8.Id = 269;
this.commandBarItem8.Name = "commandBarItem8";
this.commandBarItem8.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.FilterList;
//
// commandBarItem9
//
this.commandBarItem9.Id = 270;
this.commandBarItem9.Name = "commandBarItem9";
this.commandBarItem9.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ShowCustomSortForm;
//
// commandBarItem10
//
this.commandBarItem10.Id = 271;
this.commandBarItem10.Name = "commandBarItem10";
this.commandBarItem10.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.ConvertToParagraphs;
//
// commandBarSubItem7
//
this.commandBarSubItem7.Id = 272;
this.commandBarSubItem7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem25),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem26),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem27),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem28),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem29),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem30),
new DevExpress.XtraBars.LinkPersistInfo(this.commandBarCheckItem31)});
this.commandBarSubItem7.Name = "commandBarSubItem7";
this.commandBarSubItem7.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertDataRowSeparator;
//
// commandBarCheckItem25
//
this.commandBarCheckItem25.Id = 273;
this.commandBarCheckItem25.Name = "commandBarCheckItem25";
this.commandBarCheckItem25.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertPageBreakDataRowSeparator;
//
// commandBarCheckItem26
//
this.commandBarCheckItem26.Id = 274;
this.commandBarCheckItem26.Name = "commandBarCheckItem26";
this.commandBarCheckItem26.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakNextPageDataRowSeparator;
//
// commandBarCheckItem27
//
this.commandBarCheckItem27.Id = 275;
this.commandBarCheckItem27.Name = "commandBarCheckItem27";
this.commandBarCheckItem27.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakEvenPageDataRowSeparator;
//
// commandBarCheckItem28
//
this.commandBarCheckItem28.Id = 276;
this.commandBarCheckItem28.Name = "commandBarCheckItem28";
this.commandBarCheckItem28.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertSectionBreakOddPageDataRowSeparator;
//
// commandBarCheckItem29
//
this.commandBarCheckItem29.Id = 277;
this.commandBarCheckItem29.Name = "commandBarCheckItem29";
this.commandBarCheckItem29.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyParagraphDataRowSeparator;
//
// commandBarCheckItem30
//
this.commandBarCheckItem30.Id = 278;
this.commandBarCheckItem30.Name = "commandBarCheckItem30";
this.commandBarCheckItem30.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertEmptyRowDataRowSeparator;
//
// commandBarCheckItem31
//
this.commandBarCheckItem31.Id = 279;
this.commandBarCheckItem31.Name = "commandBarCheckItem31";
this.commandBarCheckItem31.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.InsertNoneDataRowSeparator;
//
// commandBarItem11
//
this.commandBarItem11.Id = 280;
this.commandBarItem11.Name = "commandBarItem11";
this.commandBarItem11.SnapCommand = DevExpress.Snap.Extensions.UI.SnapCommand.DeleteList;
//
// listEditorRowLimitRibbonPageGroup1
//
this.listEditorRowLimitRibbonPageGroup1.ItemLinks.Add(this.barButtonGroup8);
this.listEditorRowLimitRibbonPageGroup1.Name = "listEditorRowLimitRibbonPageGroup1";
//
// changeEditorRowLimitItem1
//
this.changeEditorRowLimitItem1.Edit = this.repositoryItemEditorRowLimitEdit1;
this.changeEditorRowLimitItem1.Id = 281;
this.changeEditorRowLimitItem1.Name = "changeEditorRowLimitItem1";
this.changeEditorRowLimitItem1.Width = 90;
//
// barButtonGroup8
//
this.barButtonGroup8.Id = 8;
this.barButtonGroup8.ItemLinks.Add(this.changeEditorRowLimitItem1);
this.barButtonGroup8.Name = "barButtonGroup8";
this.barButtonGroup8.Tag = "{97BBE334-159B-44d9-A168-0411957565E8}";
//
// repositoryItemEditorRowLimitEdit1
//
this.repositoryItemEditorRowLimitEdit1.AutoHeight = false;
this.repositoryItemEditorRowLimitEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.repositoryItemEditorRowLimitEdit1.Control = this.snapControl1;
this.repositoryItemEditorRowLimitEdit1.Name = "repositoryItemEditorRowLimitEdit1";
//
// chartTypeRibbonPageGroup1
//
this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createBarBaseItem1);
this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createLineBaseItem1);
this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createPieBaseItem1);
this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createRotatedBarBaseItem1);
this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createAreaBaseItem1);
this.chartTypeRibbonPageGroup1.ItemLinks.Add(this.createOtherSeriesTypesBaseItem1);
this.chartTypeRibbonPageGroup1.Name = "chartTypeRibbonPageGroup1";
//
// createChartRibbonPage1
//
this.createChartRibbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
this.chartTypeRibbonPageGroup1,
this.chartAppearanceRibbonPageGroup1,
this.chartWizardRibbonPageGroup1});
this.createChartRibbonPage1.Name = "createChartRibbonPage1";
//
// chartRibbonPageCategory1
//
this.chartRibbonPageCategory1.Control = null;
this.chartRibbonPageCategory1.Name = "chartRibbonPageCategory1";
this.chartRibbonPageCategory1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
this.createChartRibbonPage1});
//
// createBarBaseItem1
//
this.createBarBaseItem1.DropDownControl = this.galleryDropDown1;
this.createBarBaseItem1.Id = 282;
this.createBarBaseItem1.Name = "createBarBaseItem1";
//
// galleryDropDown1
//
//
//
//
chartControlCommandGalleryItemGroup2DColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createBarChartItem1,
createFullStackedBarChartItem1,
createSideBySideFullStackedBarChartItem1,
createSideBySideStackedBarChartItem1,
createStackedBarChartItem1});
chartControlCommandGalleryItemGroup3DColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createBar3DChartItem1,
createFullStackedBar3DChartItem1,
createManhattanBarChartItem1,
createSideBySideFullStackedBar3DChartItem1,
createSideBySideStackedBar3DChartItem1,
createStackedBar3DChartItem1});
chartControlCommandGalleryItemGroupCylinderColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createCylinderBar3DChartItem1,
createCylinderFullStackedBar3DChartItem1,
createCylinderManhattanBarChartItem1,
createCylinderSideBySideFullStackedBar3DChartItem1,
createCylinderSideBySideStackedBar3DChartItem1,
createCylinderStackedBar3DChartItem1});
chartControlCommandGalleryItemGroupConeColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createConeBar3DChartItem1,
createConeFullStackedBar3DChartItem1,
createConeManhattanBarChartItem1,
createConeSideBySideFullStackedBar3DChartItem1,
createConeSideBySideStackedBar3DChartItem1,
createConeStackedBar3DChartItem1});
chartControlCommandGalleryItemGroupPyramidColumn1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createPyramidBar3DChartItem1,
createPyramidFullStackedBar3DChartItem1,
createPyramidManhattanBarChartItem1,
createPyramidSideBySideFullStackedBar3DChartItem1,
createPyramidSideBySideStackedBar3DChartItem1,
createPyramidStackedBar3DChartItem1});
this.galleryDropDown1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
chartControlCommandGalleryItemGroup2DColumn1,
chartControlCommandGalleryItemGroup3DColumn1,
chartControlCommandGalleryItemGroupCylinderColumn1,
chartControlCommandGalleryItemGroupConeColumn1,
chartControlCommandGalleryItemGroupPyramidColumn1});
this.galleryDropDown1.Name = "galleryDropDown1";
//
// createLineBaseItem1
//
this.createLineBaseItem1.DropDownControl = this.galleryDropDown2;
this.createLineBaseItem1.Id = 283;
this.createLineBaseItem1.Name = "createLineBaseItem1";
//
// galleryDropDown2
//
//
//
//
chartControlCommandGalleryItemGroup2DLine1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createLineChartItem1,
createFullStackedLineChartItem1,
createScatterLineChartItem1,
createSplineChartItem1,
createStackedLineChartItem1,
createStepLineChartItem1});
chartControlCommandGalleryItemGroup3DLine1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createLine3DChartItem1,
createFullStackedLine3DChartItem1,
createSpline3DChartItem1,
createStackedLine3DChartItem1,
createStepLine3DChartItem1});
this.galleryDropDown2.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
chartControlCommandGalleryItemGroup2DLine1,
chartControlCommandGalleryItemGroup3DLine1});
this.galleryDropDown2.Name = "galleryDropDown2";
//
// createPieBaseItem1
//
this.createPieBaseItem1.DropDownControl = this.galleryDropDown3;
this.createPieBaseItem1.Id = 284;
this.createPieBaseItem1.Name = "createPieBaseItem1";
//
// galleryDropDown3
//
//
//
//
chartControlCommandGalleryItemGroup2DPie1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createPieChartItem1,
createDoughnutChartItem1});
chartControlCommandGalleryItemGroup3DPie1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createPie3DChartItem1,
createDoughnut3DChartItem1});
this.galleryDropDown3.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
chartControlCommandGalleryItemGroup2DPie1,
chartControlCommandGalleryItemGroup3DPie1});
this.galleryDropDown3.Name = "galleryDropDown3";
//
// createRotatedBarBaseItem1
//
this.createRotatedBarBaseItem1.DropDownControl = this.galleryDropDown4;
this.createRotatedBarBaseItem1.Id = 285;
this.createRotatedBarBaseItem1.Name = "createRotatedBarBaseItem1";
//
// galleryDropDown4
//
//
//
//
chartControlCommandGalleryItemGroup2DBar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createRotatedBarChartItem1,
createRotatedFullStackedBarChartItem1,
createRotatedSideBySideFullStackedBarChartItem1,
createRotatedSideBySideStackedBarChartItem1,
createRotatedStackedBarChartItem1});
this.galleryDropDown4.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
chartControlCommandGalleryItemGroup2DBar1});
this.galleryDropDown4.Name = "galleryDropDown4";
//
// createAreaBaseItem1
//
this.createAreaBaseItem1.DropDownControl = this.galleryDropDown5;
this.createAreaBaseItem1.Id = 286;
this.createAreaBaseItem1.Name = "createAreaBaseItem1";
//
// galleryDropDown5
//
//
//
//
chartControlCommandGalleryItemGroup2DArea1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createAreaChartItem1,
createFullStackedAreaChartItem1,
createFullStackedSplineAreaChartItem1,
createSplineAreaChartItem1,
createStackedAreaChartItem1,
createStackedSplineAreaChartItem1,
createStepAreaChartItem1});
chartControlCommandGalleryItemGroup3DArea1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createArea3DChartItem1,
createFullStackedArea3DChartItem1,
createFullStackedSplineArea3DChartItem1,
createSplineArea3DChartItem1,
createStackedArea3DChartItem1,
createStackedSplineArea3DChartItem1,
createStepArea3DChartItem1});
this.galleryDropDown5.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
chartControlCommandGalleryItemGroup2DArea1,
chartControlCommandGalleryItemGroup3DArea1});
this.galleryDropDown5.Name = "galleryDropDown5";
//
// createOtherSeriesTypesBaseItem1
//
this.createOtherSeriesTypesBaseItem1.DropDownControl = this.galleryDropDown6;
this.createOtherSeriesTypesBaseItem1.Id = 287;
this.createOtherSeriesTypesBaseItem1.Name = "createOtherSeriesTypesBaseItem1";
//
// galleryDropDown6
//
//
//
//
chartControlCommandGalleryItemGroupPoint1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createPointChartItem1,
createBubbleChartItem1});
chartControlCommandGalleryItemGroupFunnel1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createFunnelChartItem1,
createFunnel3DChartItem1});
chartControlCommandGalleryItemGroupFinancial1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createStockChartItem1,
createCandleStickChartItem1});
chartControlCommandGalleryItemGroupRadar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createRadarPointChartItem1,
createRadarLineChartItem1,
createRadarAreaChartItem1});
chartControlCommandGalleryItemGroupPolar1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createPolarPointChartItem1,
createPolarLineChartItem1,
createPolarAreaChartItem1});
chartControlCommandGalleryItemGroupRange1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createRangeBarChartItem1,
createSideBySideRangeBarChartItem1,
createRangeAreaChartItem1,
createRangeArea3DChartItem1});
chartControlCommandGalleryItemGroupGantt1.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
createGanttChartItem1,
createSideBySideGanttChartItem1});
this.galleryDropDown6.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
chartControlCommandGalleryItemGroupPoint1,
chartControlCommandGalleryItemGroupFunnel1,
chartControlCommandGalleryItemGroupFinancial1,
chartControlCommandGalleryItemGroupRadar1,
chartControlCommandGalleryItemGroupPolar1,
chartControlCommandGalleryItemGroupRange1,
chartControlCommandGalleryItemGroupGantt1});
this.galleryDropDown6.Name = "galleryDropDown6";
//
// chartAppearanceRibbonPageGroup1
//
this.chartAppearanceRibbonPageGroup1.ItemLinks.Add(this.changePaletteGalleryBaseItem1);
this.chartAppearanceRibbonPageGroup1.ItemLinks.Add(this.changeAppearanceGalleryBaseItem1);
this.chartAppearanceRibbonPageGroup1.Name = "chartAppearanceRibbonPageGroup1";
//
// changePaletteGalleryBaseItem1
//
this.changePaletteGalleryBaseItem1.DropDownControl = this.galleryDropDown7;
this.changePaletteGalleryBaseItem1.Id = 288;
this.changePaletteGalleryBaseItem1.Name = "changePaletteGalleryBaseItem1";
//
// galleryDropDown7
//
this.galleryDropDown7.Name = "galleryDropDown7";
//
// changeAppearanceGalleryBaseItem1
//
//
//
//
this.changeAppearanceGalleryBaseItem1.Gallery.ColumnCount = 7;
this.changeAppearanceGalleryBaseItem1.Gallery.ImageSize = new System.Drawing.Size(80, 50);
this.changeAppearanceGalleryBaseItem1.Gallery.RowCount = 4;
this.changeAppearanceGalleryBaseItem1.Id = 289;
this.changeAppearanceGalleryBaseItem1.Name = "changeAppearanceGalleryBaseItem1";
//
// chartWizardRibbonPageGroup1
//
this.chartWizardRibbonPageGroup1.AllowMinimize = false;
this.chartWizardRibbonPageGroup1.ItemLinks.Add(this.runWizardChartItem1);
this.chartWizardRibbonPageGroup1.Name = "chartWizardRibbonPageGroup1";
//
// runWizardChartItem1
//
this.runWizardChartItem1.Id = 290;
this.runWizardChartItem1.Name = "runWizardChartItem1";
//
// Events
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.panelContainer1);
this.Controls.Add(this.ribbonControl1);
this.Name = "Events";
this.Size = new System.Drawing.Size(1183, 387);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.snapDockManager1)).EndInit();
this.panelContainer1.ResumeLayout(false);
this.fieldListDockPanel1.ResumeLayout(false);
this.reportExplorerDockPanel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.snapDocumentManager1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.noDocumentsView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.snapBarController1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemFloatingObjectOutlineWeight1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemEditorRowLimitEdit1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown6)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.galleryDropDown7)).EndInit();
this.ResumeLayout(false);
}
void OnBeforeInsertSnList(object sender, BeforeInsertSnListEventArgs e) {
e.DataFields = ShowColumnChooserDialog(e.DataFields);
}
void OnBeforeInsertSnListColumns(object sender, BeforeInsertSnListColumnsEventArgs e) {
e.DataFields = ShowColumnChooserDialog(e.DataFields);
}
void OnBeforeInsertSnListDetail(object sender, BeforeInsertSnListDetailEventArgs e) {
e.DataFields = ShowColumnChooserDialog(e.DataFields);
}
List<DataFieldInfo> ShowColumnChooserDialog(List<DataFieldInfo> dataFields) {
ColumnChooserDialog dlg = new ColumnChooserDialog();
dlg.SetFieldList(dataFields);
dlg.ShowDialog();
return dlg.Result;
}
void OnPrepareSnList(object sender, PrepareSnListEventArgs e) {
e.Template.InsertHtmlText(e.Template.Range.Start, "<h1>Auto-generated header</h1>");
}
void OnPrepareSnListColumns(object sender, PrepareSnListColumnsEventArgs e) {
DevExpress.XtraRichEdit.API.Native.CharacterProperties characterProperties;
if (e.Header != null) {
characterProperties = e.Header.BeginUpdateCharacters(e.Header.Range);
characterProperties.BackColor = System.Drawing.Color.DarkOrange;
characterProperties.Bold = true;
e.Header.EndUpdateCharacters(characterProperties);
}
characterProperties = e.Body.BeginUpdateCharacters(e.Body.Range);
characterProperties.BackColor = System.Drawing.Color.Yellow;
characterProperties.Italic = true;
e.Body.EndUpdateCharacters(characterProperties);
}
void OnPrepareSnListDetail(object sender, PrepareSnListDetailEventArgs e) {
e.Template.InsertHtmlText(e.Template.Range.Start, "<h2>Auto-generated header for detail level</h2>");
}
void OnAfterInsertSnList(object sender, AfterInsertSnListEventArgs e) {
snapControl1.Document.Selection = e.Range;
}
void OnAfterInsertSnListColumns(object sender, AfterInsertSnListColumnsEventArgs e) {
snapControl1.Document.Selection = e.SnList.Field.Range;
}
void OnAfterInsertSnListDetail(object sender, AfterInsertSnListDetailEventArgs e) {
snapControl1.Document.Selection = e.Master.Field.Range;
}
void OnBeforeListCheckedChanged(object sender, EventArgs e) {
if (chkBeforeList.Checked)
snapControl1.Document.BeforeInsertSnList += OnBeforeInsertSnList;
else
snapControl1.Document.BeforeInsertSnList -= OnBeforeInsertSnList;
}
void OnBeforeColumnsCheckedChanged(object sender, EventArgs e) {
if (chkBeforeColumns.Checked)
snapControl1.Document.BeforeInsertSnListColumns += OnBeforeInsertSnListColumns;
else
snapControl1.Document.BeforeInsertSnListColumns -= OnBeforeInsertSnListColumns;
}
void OnBeforeDetailCheckedChanged(object sender, EventArgs e) {
if (chkBeforeDetail.Checked)
snapControl1.Document.BeforeInsertSnListDetail += OnBeforeInsertSnListDetail;
else
snapControl1.Document.BeforeInsertSnListDetail -= OnBeforeInsertSnListDetail;
}
void OnPrepareListCheckedChanged(object sender, EventArgs e) {
if (chkPrepareList.Checked)
snapControl1.Document.PrepareSnList += OnPrepareSnList;
else
snapControl1.Document.PrepareSnList -= OnPrepareSnList;
}
void OnPrepareColumnsCheckedChanged(object sender, EventArgs e) {
if (chkPrepareColumns.Checked)
snapControl1.Document.PrepareSnListColumns += OnPrepareSnListColumns;
else
snapControl1.Document.PrepareSnListColumns -= OnPrepareSnListColumns;
}
void OnPrepareDetailCheckedChanged(object sender, EventArgs e) {
if (chkPrepareDetail.Checked)
snapControl1.Document.PrepareSnListDetail += OnPrepareSnListDetail;
else
snapControl1.Document.PrepareSnListDetail -= OnPrepareSnListDetail;
}
void OnAfterListCheckedChanged(object sender, EventArgs e) {
if (chkAfterList.Checked)
snapControl1.Document.AfterInsertSnList += OnAfterInsertSnList;
else
snapControl1.Document.AfterInsertSnList -= OnAfterInsertSnList;
}
void OnAfterColumnsCheckedChanged(object sender, EventArgs e) {
if (chkAfterColumns.Checked)
snapControl1.Document.AfterInsertSnListColumns += OnAfterInsertSnListColumns;
else
snapControl1.Document.AfterInsertSnListColumns -= OnAfterInsertSnListColumns;
}
void OnAfterDetailCheckedChanged(object sender, EventArgs e) {
if (chkAfterDetail.Checked)
snapControl1.Document.AfterInsertSnListDetail += OnAfterInsertSnListDetail;
else
snapControl1.Document.AfterInsertSnListDetail -= OnAfterInsertSnListDetail;
}
}
}