Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutCellPaintEventArgs.cs / 1305376 / TableLayoutCellPaintEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Drawing.Design; using System.Globalization; using System.Windows.Forms.Layout; ////// /// This is the overrided PaintEventArgs for painting the cell of the table /// It contains additional information indicating the row/column of the cell /// as well as the bound of the cell /// public class TableLayoutCellPaintEventArgs : PaintEventArgs { private Rectangle bounds; private int row; private int column; ///public TableLayoutCellPaintEventArgs(Graphics g, Rectangle clipRectangle, Rectangle cellBounds, int column, int row) : base(g, clipRectangle) { this.bounds = cellBounds; this.row = row; this.column = column; } //the bounds of the cell /// public Rectangle CellBounds { get { return bounds; } } //the row index of the cell /// public int Row { get { return row; } } //the column index of the cell /// public int Column { get { return column; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataBinder.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ContentTextAutomationPeer.cs
- ObjectComplexPropertyMapping.cs
- FormsAuthenticationEventArgs.cs
- RecipientIdentity.cs
- ExpandSegment.cs
- TextDecorationCollectionConverter.cs
- XPathNavigatorException.cs
- PackageDigitalSignatureManager.cs
- RegexCompiler.cs
- InkCanvasInnerCanvas.cs
- BindingCompleteEventArgs.cs
- WebPartMenuStyle.cs
- PropertyInfoSet.cs
- _NetworkingPerfCounters.cs
- TreeNode.cs
- AnimationClock.cs
- basevalidator.cs
- SqlUserDefinedTypeAttribute.cs
- CodeArgumentReferenceExpression.cs
- Part.cs
- SafeArrayRankMismatchException.cs
- ExcludePathInfo.cs
- FixedPage.cs
- tabpagecollectioneditor.cs
- DynamicILGenerator.cs
- DispatchWrapper.cs
- DBConnection.cs
- TextStore.cs
- Themes.cs
- ErrorHandler.cs
- SchemaImporterExtension.cs
- LinkedList.cs
- DataGridViewCellEventArgs.cs
- Recipient.cs
- Query.cs
- ScriptResourceDefinition.cs
- BinaryMethodMessage.cs
- ApplicationServicesHostFactory.cs
- PointValueSerializer.cs
- ColumnWidthChangedEvent.cs
- DispatchChannelSink.cs
- XmlAttributeCollection.cs
- DependencyStoreSurrogate.cs
- RuleRef.cs
- InputReport.cs
- StylusButtonEventArgs.cs
- AllMembershipCondition.cs
- EventLog.cs
- MultiAsyncResult.cs
- SimpleTypeResolver.cs
- HasRunnableWorkflowEvent.cs
- AnnotationAuthorChangedEventArgs.cs
- HwndAppCommandInputProvider.cs
- PhoneCall.cs
- UnsafeNativeMethods.cs
- Font.cs
- TaiwanLunisolarCalendar.cs
- DataSourceGroupCollection.cs
- CompoundFileReference.cs
- ListDictionary.cs
- WebPartDisplayModeEventArgs.cs
- MoveSizeWinEventHandler.cs
- SystemIPInterfaceStatistics.cs
- RenderDataDrawingContext.cs
- GenericRootAutomationPeer.cs
- ServiceMetadataPublishingElement.cs
- ChannelManager.cs
- StringConverter.cs
- querybuilder.cs
- Variant.cs
- XmlSortKeyAccumulator.cs
- AnnotationResourceChangedEventArgs.cs
- XmlCharCheckingReader.cs
- Brush.cs
- CodeArrayIndexerExpression.cs
- Panel.cs
- CanonicalXml.cs
- IntSecurity.cs
- CodeCatchClauseCollection.cs
- HighlightVisual.cs
- SHA512Managed.cs
- ResXDataNode.cs
- BulletChrome.cs
- DataTable.cs
- ListBindingConverter.cs
- Int32RectValueSerializer.cs
- FontStretch.cs
- DefaultMemberAttribute.cs
- ChangeNode.cs
- XmlIlGenerator.cs
- graph.cs
- StringConcat.cs
- SystemInfo.cs
- RuntimeArgumentHandle.cs
- RootAction.cs
- UDPClient.cs
- NetTcpBindingCollectionElement.cs
- AsyncOperationManager.cs