1 write to headerAlignmentComboBox
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
316
this.
headerAlignmentComboBox
= new System.Windows.Forms.ComboBox();
11 references to headerAlignmentComboBox
System.Workflow.ComponentModel (11)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (11)
188
this.
headerAlignmentComboBox
.Items.AddRange(new object[] { HorizontalAlignment.Left, HorizontalAlignment.Center, HorizontalAlignment.Right });
189
if (this.
headerAlignmentComboBox
.Items.IndexOf(this.printDocument.PageSetupData.HeaderAlignment) != -1)
190
this.
headerAlignmentComboBox
.SelectedItem = this.printDocument.PageSetupData.HeaderAlignment;
192
this.
headerAlignmentComboBox
.SelectedItem = HorizontalAlignment.Center;
803
this.headerTableLayoutPanel.Controls.Add(this.
headerAlignmentComboBox
, 1, 1);
855
resources.ApplyResources(this.
headerAlignmentComboBox
, "headerAlignmentComboBox");
856
this.headerTableLayoutPanel.SetColumnSpan(this.
headerAlignmentComboBox
, 2);
857
this.
headerAlignmentComboBox
.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
858
this.
headerAlignmentComboBox
.FormattingEnabled = true;
859
this.
headerAlignmentComboBox
.Name = "headerAlignmentComboBox";
987
this.printDocument.PageSetupData.HeaderAlignment = (HorizontalAlignment)this.
headerAlignmentComboBox
.SelectedItem;