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
- ResourceCodeDomSerializer.cs
- HttpRequestMessageProperty.cs
- NameObjectCollectionBase.cs
- AnnouncementDispatcherAsyncResult.cs
- OracleDataAdapter.cs
- CreateUserWizard.cs
- ColumnHeaderConverter.cs
- Utils.cs
- CaseExpr.cs
- ContentPresenter.cs
- TdsParser.cs
- HtmlInputText.cs
- EdmRelationshipRoleAttribute.cs
- SslStream.cs
- CursorInteropHelper.cs
- UrlUtility.cs
- SchemaImporterExtensionElementCollection.cs
- SafeRightsManagementEnvironmentHandle.cs
- ProviderSettings.cs
- HMACSHA512.cs
- WebServiceParameterData.cs
- TypedAsyncResult.cs
- MetadataWorkspace.cs
- _UriTypeConverter.cs
- AdCreatedEventArgs.cs
- RubberbandSelector.cs
- ClientUIRequest.cs
- webclient.cs
- MarkupProperty.cs
- PocoPropertyAccessorStrategy.cs
- BaseTransportHeaders.cs
- TextBox.cs
- SerializerDescriptor.cs
- NameValuePair.cs
- ReadOnlyCollection.cs
- AuthorizationSection.cs
- DbFunctionCommandTree.cs
- DataSourceCache.cs
- WebPartManager.cs
- AutoCompleteStringCollection.cs
- HyperlinkAutomationPeer.cs
- GeneralTransform2DTo3D.cs
- CodeIterationStatement.cs
- CatalogPart.cs
- OleDbStruct.cs
- SmtpFailedRecipientException.cs
- SerializationTrace.cs
- XmlBindingWorker.cs
- TreeNode.cs
- DbParameterCollection.cs
- FixedSOMGroup.cs
- InkPresenter.cs
- AspProxy.cs
- PeerEndPoint.cs
- RequestTimeoutManager.cs
- ClickablePoint.cs
- AnnotationDocumentPaginator.cs
- WebBrowserContainer.cs
- CqlWriter.cs
- SqlInternalConnectionSmi.cs
- HttpCookie.cs
- EllipseGeometry.cs
- ExceptionHandlers.cs
- StringHandle.cs
- RSAPKCS1SignatureFormatter.cs
- SQLInt32Storage.cs
- CompositeScriptReferenceEventArgs.cs
- _emptywebproxy.cs
- ActiveXHost.cs
- SimpleLine.cs
- CompareValidator.cs
- LoaderAllocator.cs
- QueryExpression.cs
- Camera.cs
- XNodeValidator.cs
- XmlNullResolver.cs
- SmiMetaDataProperty.cs
- EntityDataSourceDesignerHelper.cs
- DispatcherObject.cs
- TemplateParser.cs
- ProjectedSlot.cs
- Freezable.cs
- documentsequencetextview.cs
- MdImport.cs
- TimeIntervalCollection.cs
- TargetException.cs
- WaitHandleCannotBeOpenedException.cs
- BaseAppDomainProtocolHandler.cs
- CustomAssemblyResolver.cs
- Vector3DValueSerializer.cs
- EncoderReplacementFallback.cs
- webproxy.cs
- HttpModulesSection.cs
- ResourcePool.cs
- Base64Decoder.cs
- FlowDocumentReader.cs
- PreviewKeyDownEventArgs.cs
- DataGridViewAutoSizeModeEventArgs.cs
- EntityDataSourceWrapper.cs
- HyperLinkStyle.cs