Code:
/ DotNET / DotNET / 8.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
- AuthenticationException.cs
- UserCancellationException.cs
- SymmetricAlgorithm.cs
- BitmapEffectGeneralTransform.cs
- BrowserCapabilitiesFactoryBase.cs
- PropertyStore.cs
- StorageSetMapping.cs
- CultureInfoConverter.cs
- TemplateEditingVerb.cs
- BindingSource.cs
- CommonGetThemePartSize.cs
- MissingManifestResourceException.cs
- DynamicControl.cs
- UInt64.cs
- C14NUtil.cs
- SoapFault.cs
- AssociationSetMetadata.cs
- JpegBitmapDecoder.cs
- ContentElement.cs
- TemplatedWizardStep.cs
- DetailsViewInsertedEventArgs.cs
- _DigestClient.cs
- Transform.cs
- CardSpaceShim.cs
- TransformConverter.cs
- SrgsElementFactoryCompiler.cs
- GenericAuthenticationEventArgs.cs
- SymbolMethod.cs
- ConnectionsZone.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- DependencyPropertyValueSerializer.cs
- ApplicationHost.cs
- IndicCharClassifier.cs
- FileUtil.cs
- Image.cs
- ListBoxItemAutomationPeer.cs
- PropertyConverter.cs
- SamlAttribute.cs
- QuaternionConverter.cs
- OrCondition.cs
- Item.cs
- XmlSchemaSimpleType.cs
- EntityDataSourceQueryBuilder.cs
- TextRunTypographyProperties.cs
- ListChangedEventArgs.cs
- VirtualPathUtility.cs
- CategoryAttribute.cs
- OdbcParameter.cs
- RowSpanVector.cs
- CrossAppDomainChannel.cs
- Matrix.cs
- x509store.cs
- DateTimeAutomationPeer.cs
- LockedAssemblyCache.cs
- RegistryKey.cs
- HtmlTable.cs
- StagingAreaInputItem.cs
- SizeAnimation.cs
- FixedDocumentPaginator.cs
- ResourceSet.cs
- FunctionDetailsReader.cs
- SqlTriggerAttribute.cs
- Rotation3DAnimation.cs
- UriSection.cs
- FormViewCommandEventArgs.cs
- TdsParserSafeHandles.cs
- DoubleUtil.cs
- DiffuseMaterial.cs
- ImageSourceValueSerializer.cs
- httpserverutility.cs
- PeerTransportBindingElement.cs
- SqlConnectionPoolGroupProviderInfo.cs
- Brush.cs
- OrthographicCamera.cs
- Clock.cs
- RegistryKey.cs
- SecurityIdentifierElementCollection.cs
- WizardStepBase.cs
- ModifiableIteratorCollection.cs
- RIPEMD160Managed.cs
- ObjectTokenCategory.cs
- FaultBookmark.cs
- RestHandler.cs
- PropertyToken.cs
- ClientSettingsProvider.cs
- WebSysDefaultValueAttribute.cs
- ProcessDesigner.cs
- TickBar.cs
- XPathAncestorIterator.cs
- HelpKeywordAttribute.cs
- WindowsAuthenticationModule.cs
- TiffBitmapDecoder.cs
- InstanceView.cs
- AccessibleObject.cs
- ActivityTrace.cs
- externdll.cs
- ListenerElementsCollection.cs
- DrawingGroup.cs
- BookmarkNameHelper.cs
- SubtreeProcessor.cs