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