Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. //------------------------------------------------------------------------------ ///// 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
- TTSEvent.cs
- ServiceHostFactory.cs
- MetadataItemSerializer.cs
- CompiledIdentityConstraint.cs
- DocumentOrderQuery.cs
- TextElementCollectionHelper.cs
- IntPtr.cs
- SmiContext.cs
- MemberPath.cs
- MsmqBindingElementBase.cs
- WebPartZone.cs
- BaseDataListActionList.cs
- BlurEffect.cs
- IgnoreFlushAndCloseStream.cs
- XmlQueryStaticData.cs
- AutoGeneratedField.cs
- DPCustomTypeDescriptor.cs
- RC2CryptoServiceProvider.cs
- DataSourceConverter.cs
- TypeExtensionSerializer.cs
- WizardSideBarListControlItem.cs
- DynamicDiscoveryDocument.cs
- ToolStripLabel.cs
- Compiler.cs
- XmlSchemaSimpleTypeUnion.cs
- HistoryEventArgs.cs
- CancellationTokenRegistration.cs
- CodeDirectiveCollection.cs
- RequestQueryProcessor.cs
- X509SecurityTokenAuthenticator.cs
- SecurityIdentifierElementCollection.cs
- StyleCollection.cs
- AgileSafeNativeMemoryHandle.cs
- ProfileInfo.cs
- ClientSideProviderDescription.cs
- CollectionViewGroup.cs
- FixedHyperLink.cs
- WebProxyScriptElement.cs
- SettingsContext.cs
- OwnerDrawPropertyBag.cs
- WorkerRequest.cs
- PrintingPermission.cs
- SamlAssertion.cs
- WrappedDispatcherException.cs
- QilFunction.cs
- X500Name.cs
- ReadOnlyDictionary.cs
- PolicyLevel.cs
- Triangle.cs
- CounterSetInstance.cs
- TcpHostedTransportConfiguration.cs
- OleDbTransaction.cs
- DocumentXmlWriter.cs
- PrintSystemException.cs
- PrivilegeNotHeldException.cs
- ProfilePropertySettings.cs
- Dump.cs
- StylusCollection.cs
- DataGridViewHitTestInfo.cs
- FlowDocumentReader.cs
- InstanceDataCollectionCollection.cs
- ZipIOExtraFieldPaddingElement.cs
- XmlSchemaCollection.cs
- recordstatescratchpad.cs
- LogAppendAsyncResult.cs
- ImageMetadata.cs
- SaveFileDialog.cs
- AuthenticationService.cs
- Point3DAnimationBase.cs
- EventArgs.cs
- ImageEditor.cs
- HitTestFilterBehavior.cs
- NativeStructs.cs
- DocumentOrderQuery.cs
- _ListenerResponseStream.cs
- SqlStream.cs
- CallSiteOps.cs
- SymbolTable.cs
- CommonDialog.cs
- WindowsTokenRoleProvider.cs
- ipaddressinformationcollection.cs
- ElementHostAutomationPeer.cs
- _CommandStream.cs
- DuplexChannelBinder.cs
- OleDbWrapper.cs
- BitStack.cs
- Stylesheet.cs
- XmlAutoDetectWriter.cs
- Queue.cs
- XmlBinaryReader.cs
- IPAddressCollection.cs
- RegexRunner.cs
- HttpRuntimeSection.cs
- LogicalExpressionEditor.cs
- ThumbAutomationPeer.cs
- DisableDpiAwarenessAttribute.cs
- CompoundFileIOPermission.cs
- Int64Converter.cs
- MessageDroppedTraceRecord.cs
- BitStream.cs