1 write to FooterAlignment
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (1)
999this.printDocument.PageSetupData.FooterAlignment = (HorizontalAlignment)this.footerAlignmentComboBox.SelectedItem;
3 references to FooterAlignment
System.Workflow.ComponentModel (3)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (2)
225if (this.footerAlignmentComboBox.Items.IndexOf(this.printDocument.PageSetupData.FooterAlignment) != -1) 226this.footerAlignmentComboBox.SelectedItem = this.printDocument.PageSetupData.FooterAlignment;
AuthoringOM\Design\WorkflowPrinting.cs (1)
269HorizontalAlignment alignment = (drawHeader) ? this.pageSetupData.HeaderAlignment : this.pageSetupData.FooterAlignment;