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
- ObsoleteAttribute.cs
- _IPv6Address.cs
- Optimizer.cs
- ProtocolImporter.cs
- StreamInfo.cs
- _BufferOffsetSize.cs
- RootBrowserWindowAutomationPeer.cs
- AssertFilter.cs
- ACL.cs
- ExceptionHandlerDesigner.cs
- Model3DGroup.cs
- MinMaxParagraphWidth.cs
- Parser.cs
- oledbconnectionstring.cs
- GetLastErrorDetailsRequest.cs
- DBParameter.cs
- ProgressPage.cs
- SmiMetaDataProperty.cs
- FixedPageAutomationPeer.cs
- TreeViewImageKeyConverter.cs
- ParameterEditorUserControl.cs
- OSFeature.cs
- GridViewUpdateEventArgs.cs
- Lazy.cs
- MsmqIntegrationReceiveParameters.cs
- NativeMethods.cs
- SimpleApplicationHost.cs
- StringCollectionEditor.cs
- WindowsTokenRoleProvider.cs
- ReadOnlyPropertyMetadata.cs
- TreeNodeMouseHoverEvent.cs
- TableLayoutPanelCellPosition.cs
- TextAutomationPeer.cs
- DataGridViewTextBoxCell.cs
- Persist.cs
- RtfControlWordInfo.cs
- RouteItem.cs
- SystemWebCachingSectionGroup.cs
- CacheMemory.cs
- VisualStyleTypesAndProperties.cs
- DashStyle.cs
- PropertyToken.cs
- ServerProtocol.cs
- DiagnosticEventProvider.cs
- __Error.cs
- DomNameTable.cs
- ConfigurationPermission.cs
- CatalogPartCollection.cs
- Keyboard.cs
- Relationship.cs
- LocationSectionRecord.cs
- SecurityException.cs
- ListViewPagedDataSource.cs
- RuleAttributes.cs
- ListenerElementsCollection.cs
- TypeResolver.cs
- FrameworkTemplate.cs
- XmlSchemaType.cs
- StructuredType.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- XmlTextReader.cs
- IntSecurity.cs
- SignedXml.cs
- TableLayoutPanel.cs
- ClientRuntimeConfig.cs
- DirtyTextRange.cs
- TransactionFilter.cs
- OneOfTypeConst.cs
- ObjectDataSourceView.cs
- EntityDataSourceUtil.cs
- ProfileSection.cs
- ImageMapEventArgs.cs
- Decorator.cs
- DataGridRowHeader.cs
- PipeStream.cs
- RemotingConfiguration.cs
- HtmlFormParameterReader.cs
- SqlProfileProvider.cs
- DocumentSchemaValidator.cs
- StringTraceRecord.cs
- remotingproxy.cs
- ExpressionBinding.cs
- ListViewTableCell.cs
- Compress.cs
- MediaEntryAttribute.cs
- SliderAutomationPeer.cs
- WebPartMinimizeVerb.cs
- XmlAtomicValue.cs
- WebPartUtil.cs
- WebMethodAttribute.cs
- SerializationAttributes.cs
- TimeManager.cs
- ProfileBuildProvider.cs
- Menu.cs
- altserialization.cs
- ErrorHandlerModule.cs
- StylusButtonEventArgs.cs
- SessionStateModule.cs
- SoapExtensionStream.cs
- ServiceProviders.cs