Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Printing / PrinterResolution.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- NamespaceCollection.cs
- BitmapData.cs
- TreeNode.cs
- WebPartConnectionsConnectVerb.cs
- DriveNotFoundException.cs
- FixedHighlight.cs
- EntitySetRetriever.cs
- AbstractDataSvcMapFileLoader.cs
- dbdatarecord.cs
- itemelement.cs
- WindowsFormsHostAutomationPeer.cs
- DropShadowEffect.cs
- XmlSchemaAll.cs
- IndicCharClassifier.cs
- SvcFileManager.cs
- SamlAuthorityBinding.cs
- CommandManager.cs
- GenericRootAutomationPeer.cs
- CheckBoxRenderer.cs
- XmlChildEnumerator.cs
- BinaryParser.cs
- MarkupCompilePass1.cs
- ErrorWrapper.cs
- TransformationRules.cs
- SqlDataSourceConfigureSelectPanel.cs
- TraceProvider.cs
- XmlChoiceIdentifierAttribute.cs
- CompilerWrapper.cs
- NotFiniteNumberException.cs
- ImageAutomationPeer.cs
- AnnotationHighlightLayer.cs
- SiteIdentityPermission.cs
- DeliveryRequirementsAttribute.cs
- COAUTHIDENTITY.cs
- TableItemStyle.cs
- DropTarget.cs
- DataGridViewUtilities.cs
- PopupControlService.cs
- PlatformCulture.cs
- PeekCompletedEventArgs.cs
- GestureRecognitionResult.cs
- FontStyle.cs
- WebHttpBehavior.cs
- SimpleWebHandlerParser.cs
- DbConnectionClosed.cs
- ListManagerBindingsCollection.cs
- NegotiateStream.cs
- LastQueryOperator.cs
- ReferenceSchema.cs
- DbProviderServices.cs
- Point3DAnimation.cs
- DeadCharTextComposition.cs
- ConnectionStringsExpressionBuilder.cs
- PolyBezierSegmentFigureLogic.cs
- XmlDictionaryString.cs
- KnownTypesHelper.cs
- GlobalizationSection.cs
- pingexception.cs
- EndpointDiscoveryBehavior.cs
- RtfFormatStack.cs
- PeerNameRegistration.cs
- XmlSchemaSimpleContent.cs
- DynamicMethod.cs
- ResourceProperty.cs
- SQLDateTime.cs
- HtmlInputPassword.cs
- Calendar.cs
- GridViewUpdatedEventArgs.cs
- CustomBinding.cs
- TypeConverterAttribute.cs
- WinInetCache.cs
- ExpandSegment.cs
- EntitySet.cs
- DtdParser.cs
- EntityParameter.cs
- ObservableDictionary.cs
- DateTimeValueSerializerContext.cs
- CategoryNameCollection.cs
- QilChoice.cs
- BinaryConverter.cs
- ContractMapping.cs
- DataView.cs
- Accessible.cs
- GridViewColumnCollectionChangedEventArgs.cs
- PeerConnector.cs
- QueryInterceptorAttribute.cs
- Property.cs
- SelectorAutomationPeer.cs
- CSharpCodeProvider.cs
- DBBindings.cs
- LinqDataSourceSelectEventArgs.cs
- CqlGenerator.cs
- ValidationSummary.cs
- LinqDataSourceSelectEventArgs.cs
- UndoEngine.cs
- ElementMarkupObject.cs
- HorizontalAlignConverter.cs
- _CookieModule.cs
- Faults.cs
- Activation.cs