Code:
/ DotNET / DotNET / 8.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
- xsdvalidator.cs
- ProfileParameter.cs
- X509Certificate.cs
- BinaryObjectInfo.cs
- ContextMenuStripGroupCollection.cs
- CodeFieldReferenceExpression.cs
- NameValueSectionHandler.cs
- DBCommandBuilder.cs
- AsnEncodedData.cs
- WebPartDisplayModeEventArgs.cs
- PeerCollaboration.cs
- Int64Converter.cs
- CacheVirtualItemsEvent.cs
- IRCollection.cs
- SqlIdentifier.cs
- XmlWellformedWriter.cs
- HtmlTitle.cs
- _HeaderInfo.cs
- ApplicationSecurityInfo.cs
- FixUp.cs
- FixedFlowMap.cs
- DataGridViewAutoSizeModeEventArgs.cs
- Color.cs
- Expressions.cs
- HashAlgorithm.cs
- HttpProfileGroupBase.cs
- RadioButtonAutomationPeer.cs
- AsyncOperation.cs
- FacetEnabledSchemaElement.cs
- ArithmeticException.cs
- WindowsAuthenticationEventArgs.cs
- NameValueSectionHandler.cs
- MatrixTransform.cs
- TTSEngineTypes.cs
- BinaryQueryOperator.cs
- DriveNotFoundException.cs
- StyleReferenceConverter.cs
- DatatypeImplementation.cs
- PathGradientBrush.cs
- TransformCollection.cs
- OdbcConnectionOpen.cs
- FieldNameLookup.cs
- DataServiceExpressionVisitor.cs
- WithStatement.cs
- DetailsViewRowCollection.cs
- ElementUtil.cs
- IfJoinedCondition.cs
- DataGridTableCollection.cs
- BinaryWriter.cs
- ReadonlyMessageFilter.cs
- RootAction.cs
- DataGridViewCellConverter.cs
- LinkClickEvent.cs
- OleDbConnectionInternal.cs
- HostedHttpRequestAsyncResult.cs
- StylusEventArgs.cs
- ServerValidateEventArgs.cs
- RangeValidator.cs
- DataGridRowAutomationPeer.cs
- SerializerWriterEventHandlers.cs
- PartialCachingAttribute.cs
- ProfessionalColorTable.cs
- XmlSchemaNotation.cs
- XmlSchemaExternal.cs
- StickyNoteContentControl.cs
- ColumnResizeAdorner.cs
- CSharpCodeProvider.cs
- StyleTypedPropertyAttribute.cs
- XpsViewerException.cs
- ThemeableAttribute.cs
- HtmlString.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- KeyMatchBuilder.cs
- XhtmlBasicTextBoxAdapter.cs
- RealizationContext.cs
- SiteMapSection.cs
- FactoryGenerator.cs
- ControlValuePropertyAttribute.cs
- DefaultSerializationProviderAttribute.cs
- EllipticalNodeOperations.cs
- WorkflowInlining.cs
- WebContext.cs
- NextPreviousPagerField.cs
- InfoCardSymmetricAlgorithm.cs
- PenLineCapValidation.cs
- ListViewCancelEventArgs.cs
- WindowAutomationPeer.cs
- CodeTypeMember.cs
- Run.cs
- MailBnfHelper.cs
- DataObjectSettingDataEventArgs.cs
- ControlCollection.cs
- XmlSchemaInclude.cs
- PathSegment.cs
- RegisteredHiddenField.cs
- SoapSchemaMember.cs
- DeferredTextReference.cs
- QueryGenerator.cs
- HttpApplicationStateBase.cs
- DigestComparer.cs