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
- RemoteCryptoRsaServiceProvider.cs
- XmlUtil.cs
- WindowsToolbarItemAsMenuItem.cs
- ToolStripPanelRow.cs
- NullEntityWrapper.cs
- HexParser.cs
- Control.cs
- DeclarativeConditionsCollection.cs
- BooleanProjectedSlot.cs
- MetaTableHelper.cs
- BufferedReadStream.cs
- ByteAnimationBase.cs
- TableLayoutStyleCollection.cs
- XLinq.cs
- EntityTypeBase.cs
- WebSysDefaultValueAttribute.cs
- ToolStripContentPanel.cs
- UnknownMessageReceivedEventArgs.cs
- NegatedCellConstant.cs
- StringStorage.cs
- ScriptingRoleServiceSection.cs
- EdmMember.cs
- SecurityTokenResolver.cs
- TreeNodeConverter.cs
- GlyphInfoList.cs
- FatalException.cs
- QueryExtender.cs
- DbBuffer.cs
- _FixedSizeReader.cs
- RuntimeIdentifierPropertyAttribute.cs
- WebBrowserSiteBase.cs
- Emitter.cs
- AspCompat.cs
- CodeNamespaceCollection.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- Rule.cs
- XmlDocument.cs
- TableItemProviderWrapper.cs
- ValidatorCollection.cs
- EmptyArray.cs
- BridgeDataRecord.cs
- LeafCellTreeNode.cs
- ObjectContextServiceProvider.cs
- WebServicesDescriptionAttribute.cs
- CellIdBoolean.cs
- itemelement.cs
- CodeTypeDeclaration.cs
- _ShellExpression.cs
- PeerNode.cs
- IsolationInterop.cs
- ChameleonKey.cs
- ObjectToIdCache.cs
- DataReaderContainer.cs
- GenericTypeParameterBuilder.cs
- DataServiceHost.cs
- XmlSchemaSimpleContentRestriction.cs
- GenerateTemporaryAssemblyTask.cs
- CodeIterationStatement.cs
- Decimal.cs
- Pointer.cs
- Baml2006ReaderFrame.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- ToolStripTextBox.cs
- XPathScanner.cs
- ProcessHostMapPath.cs
- ListViewDeleteEventArgs.cs
- SignatureToken.cs
- ToolstripProfessionalRenderer.cs
- PageAdapter.cs
- SwitchLevelAttribute.cs
- XsdDuration.cs
- SqlDataSourceConnectionPanel.cs
- RTLAwareMessageBox.cs
- IndexedEnumerable.cs
- WindowsIPAddress.cs
- WindowsRebar.cs
- ColorContextHelper.cs
- UIElementCollection.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ApplicationProxyInternal.cs
- DefaultParameterValueAttribute.cs
- UIElement.cs
- SerializationEventsCache.cs
- AdPostCacheSubstitution.cs
- DataTableCollection.cs
- OleDbParameter.cs
- IUnknownConstantAttribute.cs
- Math.cs
- UserThread.cs
- TypedTableHandler.cs
- ActionNotSupportedException.cs
- FixedSOMTable.cs
- DataRecordInfo.cs
- RelationshipConstraintValidator.cs
- VectorValueSerializer.cs
- XmlSchemaSimpleContentExtension.cs
- CodeLabeledStatement.cs
- SettingsPropertyCollection.cs
- IndividualDeviceConfig.cs
- CodeMemberField.cs