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
- ColorEditor.cs
- DateTimeSerializationSection.cs
- XmlNamespaceDeclarationsAttribute.cs
- RowUpdatedEventArgs.cs
- TdsParser.cs
- GetFileNameResult.cs
- DependencyPropertyKind.cs
- ProfileBuildProvider.cs
- assemblycache.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- SubqueryTrackingVisitor.cs
- ResourceAttributes.cs
- WebDescriptionAttribute.cs
- NumericUpDown.cs
- CodeArrayCreateExpression.cs
- MonthChangedEventArgs.cs
- UnsafeNativeMethods.cs
- TextSegment.cs
- NameSpaceEvent.cs
- SoapFormatter.cs
- NativeMethods.cs
- XmlFormatExtensionPointAttribute.cs
- StrongNamePublicKeyBlob.cs
- RemoteWebConfigurationHost.cs
- GridViewPageEventArgs.cs
- ClrProviderManifest.cs
- AppearanceEditorPart.cs
- UnsafeNativeMethods.cs
- COM2PropertyPageUITypeConverter.cs
- CqlQuery.cs
- ListBoxItemWrapperAutomationPeer.cs
- TableStyle.cs
- EndSelectCardRequest.cs
- ListViewEditEventArgs.cs
- PerfService.cs
- BindStream.cs
- ArrangedElementCollection.cs
- MemoryFailPoint.cs
- Parallel.cs
- ApplicationTrust.cs
- AsyncResult.cs
- DataListItem.cs
- VirtualizedContainerService.cs
- XmlSchemaElement.cs
- TreeWalkHelper.cs
- QuadraticBezierSegment.cs
- PlanCompilerUtil.cs
- EdmType.cs
- InternalReceiveMessage.cs
- BufferedStream.cs
- ProfileService.cs
- ReadContentAsBinaryHelper.cs
- Expander.cs
- ExpressionBuilder.cs
- InputBuffer.cs
- InkCanvasSelectionAdorner.cs
- JoinCqlBlock.cs
- PolyQuadraticBezierSegment.cs
- RSAProtectedConfigurationProvider.cs
- BinaryExpression.cs
- DynamicPropertyHolder.cs
- BulletChrome.cs
- StorageMappingFragment.cs
- DivideByZeroException.cs
- ViewKeyConstraint.cs
- CompilerGlobalScopeAttribute.cs
- HijriCalendar.cs
- CorrelationValidator.cs
- IISMapPath.cs
- CharacterMetricsDictionary.cs
- XmlIgnoreAttribute.cs
- _SingleItemRequestCache.cs
- CustomError.cs
- HtmlPanelAdapter.cs
- InfoCardConstants.cs
- MarshalDirectiveException.cs
- CounterSet.cs
- QueryableDataSourceView.cs
- SvcMapFileSerializer.cs
- WebServiceErrorEvent.cs
- PersonalizableTypeEntry.cs
- CompilationUnit.cs
- ValidatedControlConverter.cs
- TreeViewItemAutomationPeer.cs
- wmiutil.cs
- DbMetaDataCollectionNames.cs
- DataGridViewDesigner.cs
- SeekStoryboard.cs
- DrawingAttributeSerializer.cs
- CacheHelper.cs
- TreeNodeBindingCollection.cs
- GeneralTransform2DTo3DTo2D.cs
- WmlImageAdapter.cs
- RootProfilePropertySettingsCollection.cs
- SecurityTokenRequirement.cs
- ToolStripPanelRow.cs
- TableCellAutomationPeer.cs
- RectAnimationBase.cs
- SplashScreen.cs
- FontWeights.cs