Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Printing / PaperSource.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- PageCodeDomTreeGenerator.cs
- NavigationPropertySingletonExpression.cs
- SmtpAuthenticationManager.cs
- WebConvert.cs
- RemotingService.cs
- WindowsButton.cs
- InvalidPropValue.cs
- GenerateScriptTypeAttribute.cs
- WebEventCodes.cs
- ContextStaticAttribute.cs
- TablePatternIdentifiers.cs
- SystemGatewayIPAddressInformation.cs
- SqlDataReaderSmi.cs
- ScriptResourceAttribute.cs
- ConstNode.cs
- FrameDimension.cs
- MyContact.cs
- Rotation3D.cs
- DeviceContexts.cs
- SectionInput.cs
- TextServicesDisplayAttribute.cs
- SchemaCreator.cs
- ProcessModelInfo.cs
- embossbitmapeffect.cs
- ObjectReaderCompiler.cs
- TypeElementCollection.cs
- CompoundFileDeflateTransform.cs
- DropTarget.cs
- BitmapVisualManager.cs
- DependencyObjectType.cs
- MetadataArtifactLoaderComposite.cs
- XPathMessageContext.cs
- _BufferOffsetSize.cs
- RuntimeTrackingProfile.cs
- WebPartConnectionsEventArgs.cs
- ClassDataContract.cs
- TextParaLineResult.cs
- DBNull.cs
- WriteFileContext.cs
- RootBrowserWindowAutomationPeer.cs
- NoResizeHandleGlyph.cs
- ArrangedElementCollection.cs
- RuleSettingsCollection.cs
- precedingquery.cs
- RuleSetCollection.cs
- CodeTypeDeclarationCollection.cs
- ComponentEditorPage.cs
- dbenumerator.cs
- SqlRowUpdatedEvent.cs
- NativeMethodsCLR.cs
- CompilerLocalReference.cs
- OdbcDataAdapter.cs
- ProfileSettingsCollection.cs
- MarshalDirectiveException.cs
- remotingproxy.cs
- PersonalizationProviderCollection.cs
- CodeMethodInvokeExpression.cs
- DefaultSerializationProviderAttribute.cs
- SqlFileStream.cs
- StreamFormatter.cs
- EtwTrace.cs
- CodeDomSerializerBase.cs
- HtmlProps.cs
- BulletChrome.cs
- QuadraticBezierSegment.cs
- Brush.cs
- DesignerAttribute.cs
- TreeNodeBinding.cs
- StatusBar.cs
- XmlResolver.cs
- RecordManager.cs
- GCHandleCookieTable.cs
- InputBinder.cs
- FormatSettings.cs
- OpenTypeLayoutCache.cs
- SubpageParaClient.cs
- coordinatorfactory.cs
- VectorAnimationBase.cs
- SID.cs
- storepermission.cs
- NotifyCollectionChangedEventArgs.cs
- Token.cs
- SQLString.cs
- HostingMessageProperty.cs
- TextBoxLine.cs
- ContentDisposition.cs
- HostExecutionContextManager.cs
- BitmapMetadataBlob.cs
- SessionStateContainer.cs
- MemberPath.cs
- TreeNodeCollection.cs
- BitmapFrame.cs
- Stylus.cs
- PreviousTrackingServiceAttribute.cs
- HttpAsyncResult.cs
- RpcResponse.cs
- SoapObjectWriter.cs
- RSACryptoServiceProvider.cs
- SharedDp.cs
- CodePageEncoding.cs