Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. //------------------------------------------------------------------------------ ///// 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
- MsmqBindingMonitor.cs
- Connector.cs
- TextRenderer.cs
- EarlyBoundInfo.cs
- ColorMap.cs
- StorageEntityTypeMapping.cs
- _SslSessionsCache.cs
- IconHelper.cs
- TemplatePropertyEntry.cs
- DeploymentSection.cs
- SetMemberBinder.cs
- XmlSchemaObjectCollection.cs
- ConfigurationCollectionAttribute.cs
- InstanceKeyView.cs
- DesignTimeData.cs
- SessionStateItemCollection.cs
- CodeExpressionStatement.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- TextLineBreak.cs
- EditorPartCollection.cs
- ActivationService.cs
- ButtonFlatAdapter.cs
- GridView.cs
- XmlSerializer.cs
- NonParentingControl.cs
- DbDataAdapter.cs
- PathFigureCollectionConverter.cs
- DocumentApplication.cs
- Rule.cs
- TreeNodeStyleCollectionEditor.cs
- SetMemberBinder.cs
- ActiveXHelper.cs
- Model3D.cs
- ExecutedRoutedEventArgs.cs
- TextTreeUndoUnit.cs
- SearchForVirtualItemEventArgs.cs
- CombinedGeometry.cs
- ScrollEvent.cs
- VirtualDirectoryMappingCollection.cs
- FtpWebRequest.cs
- ScriptResourceAttribute.cs
- CurrencyManager.cs
- GeneralTransform3DCollection.cs
- Choices.cs
- ChannelSinkStacks.cs
- ContravarianceAdapter.cs
- ComplexType.cs
- ParseElement.cs
- InstanceData.cs
- IISUnsafeMethods.cs
- InvalidWMPVersionException.cs
- CodeMethodInvokeExpression.cs
- CngAlgorithmGroup.cs
- PrimitiveDataContract.cs
- XmlResolver.cs
- ListViewInsertedEventArgs.cs
- UdpDiscoveryEndpointElement.cs
- MethodRental.cs
- BrowserCapabilitiesCompiler.cs
- IndexerNameAttribute.cs
- AppSettingsReader.cs
- SystemColorTracker.cs
- RootDesignerSerializerAttribute.cs
- BindValidator.cs
- ToolStripGripRenderEventArgs.cs
- XmlnsCompatibleWithAttribute.cs
- CryptographicAttribute.cs
- BitmapCacheBrush.cs
- _ScatterGatherBuffers.cs
- InvalidProgramException.cs
- SafeFileMappingHandle.cs
- RsaSecurityTokenAuthenticator.cs
- ToolStripDropDownMenu.cs
- Dictionary.cs
- AssemblyFilter.cs
- RSAPKCS1KeyExchangeFormatter.cs
- RemotingAttributes.cs
- DetailsViewInsertEventArgs.cs
- _NTAuthentication.cs
- NotCondition.cs
- CapabilitiesState.cs
- ToolStripOverflowButton.cs
- CancelEventArgs.cs
- WebBrowserPermission.cs
- CustomLineCap.cs
- XPathDescendantIterator.cs
- ProjectionAnalyzer.cs
- XmlSchemaSimpleTypeUnion.cs
- RbTree.cs
- WebHostScriptMappingsInstallComponent.cs
- MetadataCache.cs
- ProtocolImporter.cs
- TemplatedMailWebEventProvider.cs
- DbInsertCommandTree.cs
- MsmqIntegrationBindingCollectionElement.cs
- EncoderReplacementFallback.cs
- StackBuilderSink.cs
- WmiEventSink.cs
- DateTimeStorage.cs
- TraceUtility.cs