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
- XmlDataDocument.cs
- codemethodreferenceexpression.cs
- TextProviderWrapper.cs
- MasterPageParser.cs
- SchemaNames.cs
- _FtpDataStream.cs
- RegionData.cs
- AdCreatedEventArgs.cs
- SqlDataAdapter.cs
- IsolatedStorageFilePermission.cs
- XsdSchemaFileEditor.cs
- FontCacheLogic.cs
- ToolStripPanelCell.cs
- TcpConnectionPool.cs
- FixedTextBuilder.cs
- relpropertyhelper.cs
- XamlReader.cs
- XPathParser.cs
- CatalogZone.cs
- HtmlInputCheckBox.cs
- TableLayoutSettings.cs
- RootBuilder.cs
- DependencyProperty.cs
- DataListCommandEventArgs.cs
- UnsafeNativeMethods.cs
- ObjectDataSourceEventArgs.cs
- QueryCacheManager.cs
- CatchBlock.cs
- DelegateTypeInfo.cs
- DataGridViewTextBoxColumn.cs
- UIElement.cs
- TCPClient.cs
- StringDictionary.cs
- ToolStripDropDownButton.cs
- StringFormat.cs
- PrintPreviewGraphics.cs
- OracleDateTime.cs
- unsafeIndexingFilterStream.cs
- AssemblyNameProxy.cs
- DefaultCommandExtensionCallback.cs
- Attributes.cs
- IdnElement.cs
- ImagingCache.cs
- ConfigXmlCDataSection.cs
- AuthorizationBehavior.cs
- MimeWriter.cs
- DesignerProperties.cs
- Code.cs
- ProfileServiceManager.cs
- XsdBuildProvider.cs
- ConstraintCollection.cs
- ProxySimple.cs
- XamlPathDataSerializer.cs
- CodeChecksumPragma.cs
- AccessViolationException.cs
- AssemblyBuilder.cs
- DocumentationServerProtocol.cs
- SurrogateSelector.cs
- ScrollBar.cs
- Region.cs
- AuthenticateEventArgs.cs
- OverflowException.cs
- QilCloneVisitor.cs
- SystemIPGlobalStatistics.cs
- ISCIIEncoding.cs
- WebResourceAttribute.cs
- AsyncPostBackTrigger.cs
- TypefaceCollection.cs
- QilChoice.cs
- SpinLock.cs
- URLAttribute.cs
- DateTime.cs
- CreateUserErrorEventArgs.cs
- ControlPaint.cs
- Sequence.cs
- HttpPostedFileBase.cs
- StreamedWorkflowDefinitionContext.cs
- ToolboxItemCollection.cs
- RoleManagerSection.cs
- SpellerStatusTable.cs
- CacheSection.cs
- DBPropSet.cs
- PreviewKeyDownEventArgs.cs
- DesignTimeSiteMapProvider.cs
- GridViewDesigner.cs
- CreateWorkflowOwnerCommand.cs
- MissingManifestResourceException.cs
- XmlAttributeProperties.cs
- EntitySqlQueryCacheKey.cs
- HostExecutionContextManager.cs
- PriorityChain.cs
- GlyphInfoList.cs
- ExpressionLexer.cs
- RoleManagerEventArgs.cs
- CodeObjectCreateExpression.cs
- TextTreePropertyUndoUnit.cs
- RMEnrollmentPage3.cs
- PaintValueEventArgs.cs
- InkCanvasInnerCanvas.cs
- TypeLoadException.cs