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