Code:
/ 4.0 / 4.0 / untmp / 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. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridHeadersVisibilityToVisibilityConverter.cs
- ThreadStaticAttribute.cs
- GraphicsContainer.cs
- Bits.cs
- LiteralControl.cs
- ComponentChangingEvent.cs
- Math.cs
- InternalConfirm.cs
- WebConvert.cs
- XmlAttributeCollection.cs
- XmlSchemaAnnotation.cs
- HorizontalAlignConverter.cs
- RewritingSimplifier.cs
- SecurityTokenRequirement.cs
- IsolatedStorageFile.cs
- XmlSchemaObjectCollection.cs
- EntityTransaction.cs
- DbUpdateCommandTree.cs
- TextTrailingWordEllipsis.cs
- SqlDataSourceCommandEventArgs.cs
- MasterPageParser.cs
- XsdBuildProvider.cs
- Helpers.cs
- LayoutEngine.cs
- SQLMoney.cs
- CacheVirtualItemsEvent.cs
- OAVariantLib.cs
- BitmapCodecInfoInternal.cs
- DrawingCollection.cs
- validation.cs
- RemoveStoryboard.cs
- WebServicesSection.cs
- CheckBoxBaseAdapter.cs
- SmtpClient.cs
- ReflectionPermission.cs
- ITreeGenerator.cs
- SmiTypedGetterSetter.cs
- ListBoxDesigner.cs
- PerspectiveCamera.cs
- AsyncPostBackErrorEventArgs.cs
- DataGridPageChangedEventArgs.cs
- EmptyElement.cs
- BackgroundFormatInfo.cs
- SmiTypedGetterSetter.cs
- CommentEmitter.cs
- RtfToXamlReader.cs
- XmlChoiceIdentifierAttribute.cs
- SystemFonts.cs
- _Connection.cs
- MethodCallTranslator.cs
- UIPermission.cs
- Component.cs
- CookieHandler.cs
- ProjectionPlan.cs
- _ChunkParse.cs
- GeneratedView.cs
- ThreadStateException.cs
- EntityException.cs
- ScriptServiceAttribute.cs
- NullRuntimeConfig.cs
- Executor.cs
- LicenseException.cs
- QilInvoke.cs
- _TLSstream.cs
- StorageEntitySetMapping.cs
- TransformerInfoCollection.cs
- EventLogPermissionAttribute.cs
- SiteIdentityPermission.cs
- TitleStyle.cs
- GradientStop.cs
- ProxyOperationRuntime.cs
- SQLBoolean.cs
- SessionState.cs
- listitem.cs
- StringPropertyBuilder.cs
- SerializationException.cs
- Brush.cs
- DocumentOrderComparer.cs
- _SingleItemRequestCache.cs
- LinqDataSourceContextEventArgs.cs
- DynamicQueryableWrapper.cs
- CodeGotoStatement.cs
- RunClient.cs
- NavigatingCancelEventArgs.cs
- WasEndpointConfigContainer.cs
- ScrollItemProviderWrapper.cs
- DiagnosticsConfigurationHandler.cs
- XmlSchemaAny.cs
- EntityDataReader.cs
- DataGridViewIntLinkedList.cs
- SecurityState.cs
- AnchoredBlock.cs
- ReadOnlyDictionary.cs
- ThreadAttributes.cs
- TextBox.cs
- GenericParameterDataContract.cs
- RequestNavigateEventArgs.cs
- Switch.cs
- DiagnosticsConfiguration.cs
- FieldMetadata.cs