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
- SQLMoneyStorage.cs
- HashSetEqualityComparer.cs
- IsolatedStoragePermission.cs
- StyleXamlParser.cs
- StorageComplexPropertyMapping.cs
- CanonicalFormWriter.cs
- BaseUriHelper.cs
- RequestQueue.cs
- TemplateKey.cs
- TextBreakpoint.cs
- PnrpPermission.cs
- ExceptionNotification.cs
- HandlerFactoryCache.cs
- TextEditorTyping.cs
- AssertUtility.cs
- TemplateContent.cs
- CodePageEncoding.cs
- ListDictionaryInternal.cs
- SQlBooleanStorage.cs
- OverflowException.cs
- Page.cs
- WorkflowApplicationAbortedException.cs
- RangeValueProviderWrapper.cs
- ToolStripManager.cs
- OleDbStruct.cs
- SizeValueSerializer.cs
- SeekStoryboard.cs
- DrawingGroup.cs
- Vector.cs
- HttpApplicationFactory.cs
- TabletDevice.cs
- Brush.cs
- SynchronizationScope.cs
- QueryCacheKey.cs
- OracleDataReader.cs
- AsyncPostBackTrigger.cs
- RubberbandSelector.cs
- BodyGlyph.cs
- ValidationEventArgs.cs
- GridViewColumnCollectionChangedEventArgs.cs
- DataGridViewRowCollection.cs
- ServiceDesigner.xaml.cs
- CompilerGeneratedAttribute.cs
- TPLETWProvider.cs
- ApplicationFileParser.cs
- DiscoveryMessageSequenceGenerator.cs
- StatusBarItem.cs
- TextViewBase.cs
- RegexBoyerMoore.cs
- WmlLiteralTextAdapter.cs
- CapabilitiesRule.cs
- PrintEvent.cs
- ApplicationProxyInternal.cs
- NativeCompoundFileAPIs.cs
- QilTypeChecker.cs
- CollectionView.cs
- NodeFunctions.cs
- DebuggerAttributes.cs
- ColorTransform.cs
- Stylus.cs
- ResourcePart.cs
- StringConverter.cs
- LinqDataSourceStatusEventArgs.cs
- MulticastOption.cs
- TraceData.cs
- XsltCompileContext.cs
- RegexWorker.cs
- SizeConverter.cs
- MediaContext.cs
- ArgumentException.cs
- PagesSection.cs
- URLBuilder.cs
- NavigationProgressEventArgs.cs
- ModelItemExtensions.cs
- FindCriteria.cs
- WebPartZoneBase.cs
- EntityCommandCompilationException.cs
- PathBox.cs
- WebPartTracker.cs
- Currency.cs
- SchemaElementLookUpTableEnumerator.cs
- BeginStoryboard.cs
- RijndaelManagedTransform.cs
- ObsoleteAttribute.cs
- RepeatButton.cs
- PropertyTabAttribute.cs
- _LoggingObject.cs
- CategoryNameCollection.cs
- SmiContext.cs
- WebPartVerbCollection.cs
- Camera.cs
- AttributeCollection.cs
- ToolStripDropDown.cs
- HeaderCollection.cs
- XmlImplementation.cs
- PolicyImporterElementCollection.cs
- Version.cs
- WebPartConnectionsCancelVerb.cs
- ToolboxItemCollection.cs
- LineUtil.cs