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
- IndentedWriter.cs
- TableRow.cs
- ExpressionParser.cs
- KerberosTicketHashIdentifierClause.cs
- ImageMapEventArgs.cs
- PreloadHost.cs
- DispatchChannelSink.cs
- HotSpotCollection.cs
- DbConnectionPoolOptions.cs
- SqlColumnizer.cs
- SystemPens.cs
- AssemblyInfo.cs
- CounterSampleCalculator.cs
- SHA384.cs
- LineUtil.cs
- MessageDroppedTraceRecord.cs
- FloaterBaseParaClient.cs
- RoleManagerEventArgs.cs
- AssociatedControlConverter.cs
- TextTreeTextElementNode.cs
- MemberProjectionIndex.cs
- TimeSpanConverter.cs
- DataKeyArray.cs
- CodeNamespace.cs
- PropertyIdentifier.cs
- GlyphsSerializer.cs
- BinaryMessageEncodingBindingElement.cs
- TemplateColumn.cs
- FacetDescription.cs
- InternalConfigHost.cs
- NamedPipeProcessProtocolHandler.cs
- DataServiceRequestException.cs
- XmlAggregates.cs
- EntityCommandCompilationException.cs
- LayoutEngine.cs
- Crc32Helper.cs
- SettingsAttributes.cs
- SecurityException.cs
- HtmlSelect.cs
- DriveNotFoundException.cs
- EmbeddedMailObjectsCollection.cs
- NativeMethods.cs
- SystemInfo.cs
- LinkArea.cs
- InfoCardCryptoHelper.cs
- FileDialogCustomPlacesCollection.cs
- StrokeNode.cs
- WebConfigurationFileMap.cs
- Int16Converter.cs
- Soap11ServerProtocol.cs
- TemplateFactory.cs
- AdornerPresentationContext.cs
- Int32RectValueSerializer.cs
- WSSecurityXXX2005.cs
- SqlWorkflowPersistenceService.cs
- ComEventsMethod.cs
- CacheRequest.cs
- assertwrapper.cs
- BindingNavigatorDesigner.cs
- BuildProvider.cs
- WhitespaceRuleReader.cs
- InitializerFacet.cs
- MemberHolder.cs
- MemoryStream.cs
- DateTimeConstantAttribute.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- X509SecurityTokenProvider.cs
- DataListItem.cs
- FieldToken.cs
- BuildProviderAppliesToAttribute.cs
- ClockController.cs
- XmlCustomFormatter.cs
- SimpleApplicationHost.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ArrayTypeMismatchException.cs
- OutputWindow.cs
- followingsibling.cs
- XmlSchemaSet.cs
- BitmapEffectInput.cs
- LoginDesigner.cs
- XmlFormatWriterGenerator.cs
- JournalNavigationScope.cs
- ObjectResult.cs
- ValidatingReaderNodeData.cs
- Update.cs
- log.cs
- ResourceWriter.cs
- FileUtil.cs
- XNameTypeConverter.cs
- RemotingService.cs
- ToolStripSeparatorRenderEventArgs.cs
- BufferedWebEventProvider.cs
- MetadataCache.cs
- EndOfStreamException.cs
- TextTreeDeleteContentUndoUnit.cs
- HttpListenerContext.cs
- SuppressMessageAttribute.cs
- DragDrop.cs
- dataprotectionpermissionattribute.cs
- BaseComponentEditor.cs