1 write to footerAlignmentComboBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
305
this.
footerAlignmentComboBox
= new System.Windows.Forms.ComboBox();
11 references to footerAlignmentComboBox
System.Workflow.ComponentModel (11)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (11)
224
this.
footerAlignmentComboBox
.Items.AddRange(new object[] { HorizontalAlignment.Left, HorizontalAlignment.Center, HorizontalAlignment.Right });
225
if (this.
footerAlignmentComboBox
.Items.IndexOf(this.printDocument.PageSetupData.FooterAlignment) != -1)
226
this.
footerAlignmentComboBox
.SelectedItem = this.printDocument.PageSetupData.FooterAlignment;
228
this.
footerAlignmentComboBox
.SelectedItem = HorizontalAlignment.Center;
718
this.footerTableLayoutPanel.Controls.Add(this.
footerAlignmentComboBox
, 1, 1);
769
resources.ApplyResources(this.
footerAlignmentComboBox
, "footerAlignmentComboBox");
770
this.footerTableLayoutPanel.SetColumnSpan(this.
footerAlignmentComboBox
, 2);
771
this.
footerAlignmentComboBox
.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
772
this.
footerAlignmentComboBox
.FormattingEnabled = true;
773
this.
footerAlignmentComboBox
.Name = "footerAlignmentComboBox";
999
this.printDocument.PageSetupData.FooterAlignment = (HorizontalAlignment)this.
footerAlignmentComboBox
.SelectedItem;