Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutCellPaintEventArgs.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ForeignKeyConstraint.cs
- xmlfixedPageInfo.cs
- CompositeFontParser.cs
- HtmlEncodedRawTextWriter.cs
- EmptyEnumerator.cs
- DragCompletedEventArgs.cs
- StdValidatorsAndConverters.cs
- DesignerTransactionCloseEvent.cs
- SiteMapSection.cs
- SymbolType.cs
- InvocationExpression.cs
- DocobjHost.cs
- PasswordTextContainer.cs
- DrawingImage.cs
- ScrollContentPresenter.cs
- EntityDataSourceQueryBuilder.cs
- QuaternionKeyFrameCollection.cs
- CustomError.cs
- ResponseBodyWriter.cs
- URLString.cs
- PageClientProxyGenerator.cs
- Point4D.cs
- RoutedEventConverter.cs
- DataGridViewCell.cs
- StylusButtonEventArgs.cs
- WebPartEditorCancelVerb.cs
- OracleCommandSet.cs
- XamlClipboardData.cs
- DesignerSerializationOptionsAttribute.cs
- SerTrace.cs
- ObjectParameterCollection.cs
- ThreadInterruptedException.cs
- Label.cs
- AdditionalEntityFunctions.cs
- InfoCardAsymmetricCrypto.cs
- TableLayoutStyle.cs
- Typeface.cs
- WeakReferenceKey.cs
- SpeechAudioFormatInfo.cs
- DataGridViewMethods.cs
- SessionEndedEventArgs.cs
- DescendantBaseQuery.cs
- XmlEnumAttribute.cs
- safemediahandle.cs
- EditorPart.cs
- SerializationStore.cs
- BezierSegment.cs
- TreeBuilderBamlTranslator.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- CloudCollection.cs
- Triplet.cs
- StylusPointProperties.cs
- Nullable.cs
- ObjectListCommandEventArgs.cs
- SQLDoubleStorage.cs
- Types.cs
- HealthMonitoringSectionHelper.cs
- HttpHandlersSection.cs
- WebCategoryAttribute.cs
- XsdBuilder.cs
- OracleInfoMessageEventArgs.cs
- HwndKeyboardInputProvider.cs
- Sentence.cs
- StreamHelper.cs
- DataPagerCommandEventArgs.cs
- Random.cs
- RegexCompilationInfo.cs
- ConnectivityStatus.cs
- TabletDevice.cs
- TemplateBaseAction.cs
- ImportContext.cs
- ObjectViewEntityCollectionData.cs
- ExtractCollection.cs
- WebPartDeleteVerb.cs
- Button.cs
- MarkupCompiler.cs
- CatalogPart.cs
- TextEditorParagraphs.cs
- DockAndAnchorLayout.cs
- SafeRightsManagementEnvironmentHandle.cs
- PageCatalogPart.cs
- ImageMetadata.cs
- CodeAttributeDeclarationCollection.cs
- DebugView.cs
- Helpers.cs
- KeyedHashAlgorithm.cs
- TextRenderer.cs
- SiteMapNodeItem.cs
- RMEnrollmentPage3.cs
- ImageConverter.cs
- DesignBindingPropertyDescriptor.cs
- HotCommands.cs
- WorkflowTransactionService.cs
- ParserExtension.cs
- XmlDataSource.cs
- XmlObjectSerializerContext.cs
- QilInvoke.cs
- CopyOfAction.cs
- ModelItemExtensions.cs
- RelatedPropertyManager.cs