Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Printing / PrinterResolution.cs / 1305376 / PrinterResolution.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Printing { using System.Runtime.Serialization.Formatters; using System.Runtime.InteropServices; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; using System.Globalization; ////// /// [Serializable] public class PrinterResolution { private int x; private int y; private PrinterResolutionKind kind; ///Retrieves /// the resolution supported by a printer. ////// /// public PrinterResolution() { this.kind = PrinterResolutionKind.Custom; } internal PrinterResolution(PrinterResolutionKind kind, int x, int y) { this.kind = kind; this.x = x; this.y = y; } ////// Initializes a new instance of the ///class with default properties. /// This constructor is required for the serialization of the class. /// /// /// public PrinterResolutionKind Kind { get { return kind;} set { //valid values are 0xfffffffc to 0x0 if (!ClientUtils.IsEnumValid(value, (int)value, (int)PrinterResolutionKind.High, (int)PrinterResolutionKind.Custom)) { throw new InvalidEnumArgumentException("value", (int)value, typeof(PrinterResolutionKind)); } kind = value; } } ////// Gets /// a value indicating the kind of printer resolution. /// Setter added to enable serialization of the PrinterSettings object. /// ////// /// public int X { get { return x; } set { x = value; } } ////// Gets the printer resolution in the horizontal direction, /// in dots per inch. /// Setter added to enable serialization of the PrinterSettings object. /// ////// /// public int Y { get { return y; } set { y = value; } } ///Gets the printer resolution in the vertical direction, /// in dots per inch. /// Setter added to enable serialization of the PrinterSettings object. /// ////// /// /// public override string ToString() { if (kind != PrinterResolutionKind.Custom) return "[PrinterResolution " + TypeDescriptor.GetConverter(typeof(PrinterResolutionKind)).ConvertToString((int) Kind) + "]"; else return "[PrinterResolution" + " X=" + X.ToString(CultureInfo.InvariantCulture) + " Y=" + Y.ToString(CultureInfo.InvariantCulture) + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Provides some interesting information about the PrinterResolution in /// String form. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Printing { using System.Runtime.Serialization.Formatters; using System.Runtime.InteropServices; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; using System.Globalization; ////// /// [Serializable] public class PrinterResolution { private int x; private int y; private PrinterResolutionKind kind; ///Retrieves /// the resolution supported by a printer. ////// /// public PrinterResolution() { this.kind = PrinterResolutionKind.Custom; } internal PrinterResolution(PrinterResolutionKind kind, int x, int y) { this.kind = kind; this.x = x; this.y = y; } ////// Initializes a new instance of the ///class with default properties. /// This constructor is required for the serialization of the class. /// /// /// public PrinterResolutionKind Kind { get { return kind;} set { //valid values are 0xfffffffc to 0x0 if (!ClientUtils.IsEnumValid(value, (int)value, (int)PrinterResolutionKind.High, (int)PrinterResolutionKind.Custom)) { throw new InvalidEnumArgumentException("value", (int)value, typeof(PrinterResolutionKind)); } kind = value; } } ////// Gets /// a value indicating the kind of printer resolution. /// Setter added to enable serialization of the PrinterSettings object. /// ////// /// public int X { get { return x; } set { x = value; } } ////// Gets the printer resolution in the horizontal direction, /// in dots per inch. /// Setter added to enable serialization of the PrinterSettings object. /// ////// /// public int Y { get { return y; } set { y = value; } } ///Gets the printer resolution in the vertical direction, /// in dots per inch. /// Setter added to enable serialization of the PrinterSettings object. /// ////// /// /// public override string ToString() { if (kind != PrinterResolutionKind.Custom) return "[PrinterResolution " + TypeDescriptor.GetConverter(typeof(PrinterResolutionKind)).ConvertToString((int) Kind) + "]"; else return "[PrinterResolution" + " X=" + X.ToString(CultureInfo.InvariantCulture) + " Y=" + Y.ToString(CultureInfo.InvariantCulture) + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Provides some interesting information about the PrinterResolution in /// String form. /// ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HostedController.cs
- QuaternionAnimationBase.cs
- ListBox.cs
- CatalogUtil.cs
- DataBinder.cs
- TextRenderer.cs
- Converter.cs
- AtomParser.cs
- XmlEncodedRawTextWriter.cs
- WebPartZoneCollection.cs
- Positioning.cs
- CodeBlockBuilder.cs
- RuleProcessor.cs
- Expression.DebuggerProxy.cs
- XamlInt32CollectionSerializer.cs
- ResponseStream.cs
- SecurityPolicySection.cs
- _Connection.cs
- KeyedPriorityQueue.cs
- SplitterCancelEvent.cs
- PositiveTimeSpanValidator.cs
- AcceleratedTokenProvider.cs
- IdentitySection.cs
- MinMaxParagraphWidth.cs
- LinearKeyFrames.cs
- RuleSettingsCollection.cs
- FileIOPermission.cs
- HTTPNotFoundHandler.cs
- Scalars.cs
- PropertyItemInternal.cs
- XmlSchemaComplexContent.cs
- XmlAttributes.cs
- ButtonFieldBase.cs
- MailDefinition.cs
- ProcessStartInfo.cs
- UnmanagedBitmapWrapper.cs
- ListControlDataBindingHandler.cs
- TraceSection.cs
- XslException.cs
- PieceNameHelper.cs
- TextCompositionEventArgs.cs
- XmlSchemaAttributeGroup.cs
- ContourSegment.cs
- AutomationInteropProvider.cs
- RotateTransform.cs
- AssociationTypeEmitter.cs
- FunctionCommandText.cs
- ClusterSafeNativeMethods.cs
- XamlDesignerSerializationManager.cs
- EtwTrace.cs
- StopStoryboard.cs
- GridViewUpdateEventArgs.cs
- HighlightVisual.cs
- Thumb.cs
- TaskFormBase.cs
- GeometryGroup.cs
- JapaneseLunisolarCalendar.cs
- OpenTypeCommon.cs
- Internal.cs
- Operators.cs
- EdmComplexTypeAttribute.cs
- FixedSOMImage.cs
- GroupBox.cs
- InstanceCreationEditor.cs
- IssuanceTokenProviderBase.cs
- ToggleButtonAutomationPeer.cs
- NamespaceExpr.cs
- DiscoveryReference.cs
- ModuleElement.cs
- DocumentProperties.cs
- ImpersonationContext.cs
- DataObject.cs
- AspNetSynchronizationContext.cs
- WebPartUtil.cs
- _BufferOffsetSize.cs
- ScalarOps.cs
- XmlAttributeProperties.cs
- ScalarOps.cs
- HashStream.cs
- MobileErrorInfo.cs
- ArgumentException.cs
- TraversalRequest.cs
- DbConnectionHelper.cs
- DataGridViewRowStateChangedEventArgs.cs
- MatrixAnimationUsingPath.cs
- figurelengthconverter.cs
- COM2PropertyDescriptor.cs
- FrameworkPropertyMetadata.cs
- SharedConnectionWorkflowTransactionService.cs
- MappedMetaModel.cs
- HtmlInputHidden.cs
- ProtectedConfigurationSection.cs
- CodeSnippetCompileUnit.cs
- BasicViewGenerator.cs
- ADMembershipProvider.cs
- WebBrowser.cs
- SymLanguageVendor.cs
- StringCollection.cs
- QuaternionAnimationUsingKeyFrames.cs
- cookiecollection.cs