Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Design / PaintValueEventArgs.cs / 1 / PaintValueEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Drawing.Design { using System; using System.ComponentModel; using System.Diagnostics; using System.Drawing; ////// /// This object is passed to UITypeEditor.PaintValue. /// It contains all the information needed for the editor to /// paint the given value, including the Rectangle in which /// the drawing should be done, and the Graphics object with which the drawing /// should be done. /// [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class PaintValueEventArgs : EventArgs { private readonly ITypeDescriptorContext context; private readonly object valueToPaint; ////// /// The graphics object with which the drawing should be done. /// private readonly Graphics graphics; ////// /// The rectangle outlining the area in which the painting should be /// done. /// private readonly Rectangle bounds; ////// /// Creates a new PaintValueEventArgs with the given parameters. /// public PaintValueEventArgs(ITypeDescriptorContext context, object value, Graphics graphics, Rectangle bounds) { this.context = context; this.valueToPaint = value; this.graphics = graphics; if (graphics == null) throw new ArgumentNullException("graphics"); this.bounds = bounds; } ////// /// The rectangle outlining the area in which the painting should be /// done. /// public Rectangle Bounds { get { return bounds; } } ////// /// ITypeDescriptorContext object for additional information about the context this value appears in. /// public ITypeDescriptorContext Context { get { return context; } } ////// /// Graphics object with which painting should be done. /// public Graphics Graphics { get { return graphics; } } ////// /// The value to paint. /// public object Value { get { return valueToPaint; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectQueryExecutionPlan.cs
- WebServiceMethodData.cs
- RuntimeCompatibilityAttribute.cs
- SocketAddress.cs
- SkipQueryOptionExpression.cs
- OdbcDataReader.cs
- OleDbCommandBuilder.cs
- LocatorManager.cs
- ParallelEnumerableWrapper.cs
- RequestNavigateEventArgs.cs
- ControlCollection.cs
- InkCanvas.cs
- OdbcDataAdapter.cs
- ContextConfiguration.cs
- VariableBinder.cs
- SpecularMaterial.cs
- ArraySegment.cs
- FontWeight.cs
- Input.cs
- QfeChecker.cs
- Material.cs
- HwndPanningFeedback.cs
- AttributeParameterInfo.cs
- panel.cs
- IndentTextWriter.cs
- MinimizableAttributeTypeConverter.cs
- FixedPageStructure.cs
- BaseValidator.cs
- WebConfigurationFileMap.cs
- TypefaceMetricsCache.cs
- FixedSOMElement.cs
- ComponentResourceKey.cs
- CompiledIdentityConstraint.cs
- WindowsIdentity.cs
- InfoCardArgumentException.cs
- NamespaceList.cs
- CodeAttributeDeclarationCollection.cs
- ScriptResourceInfo.cs
- PingReply.cs
- TrackingSection.cs
- ImageDesigner.cs
- AssemblyCache.cs
- ToolBarPanel.cs
- GlyphRunDrawing.cs
- AnchorEditor.cs
- ConnectionManagementElement.cs
- ArrayTypeMismatchException.cs
- ParentControlDesigner.cs
- ViewManager.cs
- LightweightCodeGenerator.cs
- SmiRequestExecutor.cs
- GeometryModel3D.cs
- SafeBitVector32.cs
- COAUTHINFO.cs
- ValidatedMobileControlConverter.cs
- XamlPathDataSerializer.cs
- WebHeaderCollection.cs
- ProviderBase.cs
- SqlDependency.cs
- CodeSnippetTypeMember.cs
- Knowncolors.cs
- ReflectionPermission.cs
- Triplet.cs
- ParentUndoUnit.cs
- WebPartActionVerb.cs
- translator.cs
- WebPartConnectionCollection.cs
- PeerUnsafeNativeCryptMethods.cs
- ColumnMapTranslator.cs
- MeasureData.cs
- PropertyHelper.cs
- ServiceDocumentFormatter.cs
- DashStyle.cs
- ValueProviderWrapper.cs
- TypeDependencyAttribute.cs
- EntityCodeGenerator.cs
- TreeViewImageKeyConverter.cs
- HtmlInputImage.cs
- ByteConverter.cs
- MasterPageBuildProvider.cs
- AbandonedMutexException.cs
- DynamicPropertyHolder.cs
- PagesChangedEventArgs.cs
- Vector3DKeyFrameCollection.cs
- UnhandledExceptionEventArgs.cs
- FormsAuthenticationModule.cs
- BitmapCodecInfo.cs
- BuildDependencySet.cs
- GreenMethods.cs
- X509ChainPolicy.cs
- DataGridViewImageCell.cs
- MultiView.cs
- CornerRadiusConverter.cs
- IncrementalCompileAnalyzer.cs
- FrameworkRichTextComposition.cs
- Positioning.cs
- AdjustableArrowCap.cs
- ViewCellSlot.cs
- NetNamedPipeBindingCollectionElement.cs
- CommentEmitter.cs