Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Printing / PaperSource.cs / 1305376 / PaperSource.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; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; ////// /// [Serializable] public class PaperSource { private string name; private PaperSourceKind kind; ////// Specifies the paper tray from which the printer gets paper. /// ////// /// public PaperSource() { this.kind = PaperSourceKind.Custom; this.name = String.Empty; } internal PaperSource(PaperSourceKind kind, string name) { this.kind = kind; this.name = name; } ////// Initializes a new instance of the ///class with default properties. /// This constructor is required for the serialization of the class. /// /// /// public PaperSourceKind Kind { get { if (((int) kind) >= SafeNativeMethods.DMBIN_USER) return PaperSourceKind.Custom; else return kind; } } ////// Gets /// a value indicating the type of paper source. /// /// ////// /// public int RawKind { get { return (int) kind; } set { kind = (PaperSourceKind) value; } } ////// Same as Kind, but values larger than DMBIN_USER do not map to PaperSourceKind.Custom. /// This property is needed for serialization of the PrinterSettings object. /// ////// /// public string SourceName { get { return name;} set { name = value; } } ////// Gets the name of the paper source. /// Setter is added for serialization of the PrinterSettings object. /// ////// /// /// public override string ToString() { return "[PaperSource " + SourceName + " Kind=" + TypeDescriptor.GetConverter(typeof(PaperSourceKind)).ConvertToString(Kind) + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Provides some interesting information about the PaperSource 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; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; ////// /// [Serializable] public class PaperSource { private string name; private PaperSourceKind kind; ////// Specifies the paper tray from which the printer gets paper. /// ////// /// public PaperSource() { this.kind = PaperSourceKind.Custom; this.name = String.Empty; } internal PaperSource(PaperSourceKind kind, string name) { this.kind = kind; this.name = name; } ////// Initializes a new instance of the ///class with default properties. /// This constructor is required for the serialization of the class. /// /// /// public PaperSourceKind Kind { get { if (((int) kind) >= SafeNativeMethods.DMBIN_USER) return PaperSourceKind.Custom; else return kind; } } ////// Gets /// a value indicating the type of paper source. /// /// ////// /// public int RawKind { get { return (int) kind; } set { kind = (PaperSourceKind) value; } } ////// Same as Kind, but values larger than DMBIN_USER do not map to PaperSourceKind.Custom. /// This property is needed for serialization of the PrinterSettings object. /// ////// /// public string SourceName { get { return name;} set { name = value; } } ////// Gets the name of the paper source. /// Setter is added for serialization of the PrinterSettings object. /// ////// /// /// public override string ToString() { return "[PaperSource " + SourceName + " Kind=" + TypeDescriptor.GetConverter(typeof(PaperSourceKind)).ConvertToString(Kind) + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Provides some interesting information about the PaperSource in /// String form. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FreezableCollection.cs
- FilePrompt.cs
- elementinformation.cs
- SystemInformation.cs
- QueryResults.cs
- wgx_commands.cs
- WebHttpBindingElement.cs
- WebBaseEventKeyComparer.cs
- XamlReaderConstants.cs
- HandledMouseEvent.cs
- ToolBarButton.cs
- TextTreePropertyUndoUnit.cs
- BamlLocalizer.cs
- relpropertyhelper.cs
- WebBrowserBase.cs
- BuildResult.cs
- SchemaMerger.cs
- AbstractSvcMapFileLoader.cs
- SimpleType.cs
- OdbcCommand.cs
- TransportListener.cs
- DataGridViewCellConverter.cs
- ExpressionCopier.cs
- TextEditorContextMenu.cs
- Int16AnimationUsingKeyFrames.cs
- SqlDataAdapter.cs
- View.cs
- DataTableMapping.cs
- FileAuthorizationModule.cs
- CrossAppDomainChannel.cs
- TimersDescriptionAttribute.cs
- AppSecurityManager.cs
- Matrix3DStack.cs
- _NTAuthentication.cs
- CodePrimitiveExpression.cs
- QuaternionAnimationUsingKeyFrames.cs
- ImageDrawing.cs
- DynamicDataManager.cs
- ResourceSet.cs
- TypeForwardedFromAttribute.cs
- PageThemeBuildProvider.cs
- TextCollapsingProperties.cs
- IntSecurity.cs
- XmlMemberMapping.cs
- EmptyEnumerator.cs
- GridViewRowEventArgs.cs
- AppDomainCompilerProxy.cs
- BitmapCodecInfoInternal.cs
- CompiledELinqQueryState.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- OutputCacheProfileCollection.cs
- RelationshipManager.cs
- ErrorTolerantObjectWriter.cs
- RealProxy.cs
- StorageModelBuildProvider.cs
- DataGridPageChangedEventArgs.cs
- ObjectSet.cs
- Imaging.cs
- SystemIPv6InterfaceProperties.cs
- TextTreeObjectNode.cs
- DeploymentExceptionMapper.cs
- InvokeWebServiceDesigner.cs
- ExpressionConverter.cs
- ToolStripItemCollection.cs
- PathSegmentCollection.cs
- DuplicateWaitObjectException.cs
- XmlUtil.cs
- PLINQETWProvider.cs
- NullReferenceException.cs
- X509Utils.cs
- oledbconnectionstring.cs
- CompiledQueryCacheEntry.cs
- DataMemberAttribute.cs
- DataSourceProvider.cs
- Ops.cs
- Version.cs
- AuthenticationConfig.cs
- HeaderFilter.cs
- CLSCompliantAttribute.cs
- QueryOutputWriter.cs
- SqlReferenceCollection.cs
- RenderCapability.cs
- ProfilePropertySettings.cs
- PointHitTestParameters.cs
- WindowsTooltip.cs
- ClientUtils.cs
- CookieProtection.cs
- WindowsImpersonationContext.cs
- XomlCompilerResults.cs
- CellCreator.cs
- VectorAnimation.cs
- CodeCompiler.cs
- QuadraticBezierSegment.cs
- ManipulationDeltaEventArgs.cs
- CodeAttachEventStatement.cs
- ProcessModuleDesigner.cs
- MessageQueuePermissionAttribute.cs
- ClientScriptManagerWrapper.cs
- DataGridTableCollection.cs
- ComboBoxRenderer.cs