Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / PrintConfig / JobPageOrder.cs / 1 / JobPageOrder.cs
/*++ Copyright (C) 2003-2005 Microsoft Corporation All rights reserved. Module Name: JobPageOrder.cs Abstract: Definition and implementation of this public feature/parameter related types. Author: [....] ([....]) 05/26/2005 --*/ using System; using System.IO; using System.Collections; using System.Collections.ObjectModel; using System.Collections.Generic; using System.Diagnostics; using System.Printing; using MS.Internal.Printing.Configuration; namespace MS.Internal.Printing.Configuration { ////// Represents a page order option. /// internal class PageOrderOption: PrintCapabilityOption { #region Constructors internal PageOrderOption(PrintCapabilityFeature ownerFeature) : base(ownerFeature) { _value = 0; } #endregion Constructors #region Public Properties ////// Gets the page order option's value. /// public PageOrder Value { get { return _value; } } #endregion Public Properties #region Public Methods ////// Converts the page order option to human-readable string. /// ///A string that represents this page order option. public override string ToString() { return Value.ToString(); } #endregion Public Methods #region Internal Fields internal PageOrder _value; #endregion Internal Fields } ////// Represents job page order capability. /// internal class JobPageOrderCapability : PrintCapabilityFeature { #region Constructors internal JobPageOrderCapability(InternalPrintCapabilities ownerPrintCap) : base(ownerPrintCap) { } #endregion Constructors #region Public Properties ////// Gets the collection object that represents page order options supported by the device. /// public CollectionPageOrderOptions { get { return _orderOptions; } } #endregion Public Properties #region Internal Methods internal static PrintCapabilityFeature NewFeatureCallback(InternalPrintCapabilities printCap) { JobPageOrderCapability cap = new JobPageOrderCapability(printCap); cap._orderOptions = new Collection (); return cap; } internal override sealed bool AddOptionCallback(PrintCapabilityOption baseOption) { bool added = false; PageOrderOption option = baseOption as PageOrderOption; // validate the option is complete before adding it to the collection if (option._optionName != null) { int enumValue = PrintSchemaMapper.SchemaNameToEnumValueWithArray( PrintSchemaTags.Keywords.JobPageOrderKeys.PageOrderNames, PrintSchemaTags.Keywords.JobPageOrderKeys.PageOrderEnums, option._optionName); if (enumValue > 0) { option._value = (PageOrder)enumValue; this.PageOrderOptions.Add(option); added = true; } } return added; } internal override sealed void AddSubFeatureCallback(PrintCapabilityFeature subFeature) { // no sub-feature return; } internal override sealed bool FeaturePropCallback(PrintCapabilityFeature feature, XmlPrintCapReader reader) { // no feature property to handle return false; } internal override sealed PrintCapabilityOption NewOptionCallback(PrintCapabilityFeature baseFeature) { PageOrderOption option = new PageOrderOption(baseFeature); return option; } internal override sealed void OptionAttrCallback(PrintCapabilityOption baseOption, XmlPrintCapReader reader) { // no option attribute to handle return; } internal override sealed bool OptionPropCallback(PrintCapabilityOption option, XmlPrintCapReader reader) { // no option property to handle return false; } #endregion Internal Methods #region Internal Properties internal override sealed bool IsValid { get { return (this.PageOrderOptions.Count > 0); } } internal override sealed string FeatureName { get { return PrintSchemaTags.Keywords.JobPageOrderKeys.Self; } } internal override sealed bool HasSubFeature { get { return false; } } #endregion Internal Properties #region Internal Fields internal Collection _orderOptions; #endregion Internal Fields } /// /// Represents job page order setting. /// internal class JobPageOrderSetting : PrintTicketFeature { #region Constructors ////// Constructs a new job page order setting object. /// internal JobPageOrderSetting(InternalPrintTicket ownerPrintTicket) : base(ownerPrintTicket) { this._featureName = PrintSchemaTags.Keywords.JobPageOrderKeys.Self; this._propertyMaps = new PTPropertyMapEntry[] { new PTPropertyMapEntry(this, PrintSchemaTags.Framework.OptionNameProperty, PTPropValueTypes.EnumStringValue, PrintSchemaTags.Keywords.JobPageOrderKeys.PageOrderNames, PrintSchemaTags.Keywords.JobPageOrderKeys.PageOrderEnums) }; } #endregion Constructors #region Public Properties ////// Gets or sets the value of this job page order setting. /// ////// If the setting is not specified yet, getter will return 0. /// ////// The value to set is not one of the standard public PageOrder Value { get { return (PageOrder)this[PrintSchemaTags.Framework.OptionNameProperty]; } set { if (value < PrintSchema.PageOrderEnumMin || value > PrintSchema.PageOrderEnumMax) { throw new ArgumentOutOfRangeException("value"); } this[PrintSchemaTags.Framework.OptionNameProperty] = (int)value; } } #endregion Public Properties #region Public Methods ///. /// /// Converts the job page order setting to human-readable string. /// ///A string that represents this job page order setting. public override string ToString() { return Value.ToString(); } #endregion Public Methods } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SrgsSubset.cs
- DetailsViewInsertedEventArgs.cs
- CuspData.cs
- KeyBinding.cs
- TextTreeInsertUndoUnit.cs
- DelegateArgumentReference.cs
- ColorConvertedBitmap.cs
- Expression.cs
- DbFunctionCommandTree.cs
- DependencyProperty.cs
- Transform3DGroup.cs
- metadatamappinghashervisitor.cs
- XmlSchemaSimpleType.cs
- RSAPKCS1SignatureFormatter.cs
- FixedPageProcessor.cs
- GetImportFileNameRequest.cs
- TextBlockAutomationPeer.cs
- PasswordRecovery.cs
- ComPlusSynchronizationContext.cs
- LocationUpdates.cs
- ScriptManagerProxy.cs
- BitConverter.cs
- FlowDecisionDesigner.xaml.cs
- SessionEndedEventArgs.cs
- ExpressionVisitor.cs
- PageRouteHandler.cs
- RouteCollection.cs
- GridViewEditEventArgs.cs
- ColorAnimationUsingKeyFrames.cs
- BindingContext.cs
- SnapLine.cs
- XmlDataImplementation.cs
- HtmlTextArea.cs
- Schema.cs
- SerializationInfo.cs
- DebugInfoGenerator.cs
- ISAPIRuntime.cs
- SymmetricKeyWrap.cs
- UIHelper.cs
- RequestCacheManager.cs
- DrawingGroup.cs
- TabItem.cs
- BackgroundWorker.cs
- CanExecuteRoutedEventArgs.cs
- BooleanKeyFrameCollection.cs
- Intellisense.cs
- QueryLifecycle.cs
- CodeTypeDelegate.cs
- EditingCoordinator.cs
- WindowsSpinner.cs
- MasterPage.cs
- BamlLocalizabilityResolver.cs
- KeyConstraint.cs
- Grant.cs
- SafeEventLogWriteHandle.cs
- CollectionAdapters.cs
- UIElement.cs
- SmiRequestExecutor.cs
- SkewTransform.cs
- PartManifestEntry.cs
- coordinator.cs
- InternalCompensate.cs
- SmtpAuthenticationManager.cs
- MouseWheelEventArgs.cs
- Schema.cs
- StringStorage.cs
- MethodRental.cs
- DrawingDrawingContext.cs
- SchemaElementLookUpTableEnumerator.cs
- EdmToObjectNamespaceMap.cs
- ElementHostPropertyMap.cs
- GenericPrincipal.cs
- TimeSpanConverter.cs
- Application.cs
- PriorityBindingExpression.cs
- StandardTransformFactory.cs
- HtmlDocument.cs
- DataGridPagerStyle.cs
- ResourceContainerWrapper.cs
- CompilationLock.cs
- EntityDataSourceContainerNameConverter.cs
- SymLanguageType.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- Size3D.cs
- DesignerActionVerbItem.cs
- GlobalAllocSafeHandle.cs
- FontWeights.cs
- WindowsFont.cs
- TreeNodeEventArgs.cs
- DataSourceXmlSubItemAttribute.cs
- Filter.cs
- DragDeltaEventArgs.cs
- URIFormatException.cs
- Annotation.cs
- DataPointer.cs
- ValueType.cs
- PrtCap_Public.cs
- AnimationClockResource.cs
- RegularExpressionValidator.cs
- XNodeValidator.cs