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
- TracePayload.cs
- assertwrapper.cs
- Preprocessor.cs
- SqlCacheDependencyDatabaseCollection.cs
- ColumnCollection.cs
- DataFormats.cs
- CapacityStreamGeometryContext.cs
- AvTrace.cs
- ControlValuePropertyAttribute.cs
- TextEvent.cs
- ProcessHostServerConfig.cs
- StringFunctions.cs
- XPathChildIterator.cs
- SQLString.cs
- CacheManager.cs
- IsolatedStoragePermission.cs
- QilGeneratorEnv.cs
- RequestDescription.cs
- ContainerSelectorGlyph.cs
- WindowsButton.cs
- AnnouncementInnerClient11.cs
- MenuAdapter.cs
- QilChoice.cs
- SecureEnvironment.cs
- DecimalConverter.cs
- DeflateStream.cs
- BaseDataList.cs
- WebPartEditorApplyVerb.cs
- SmtpMail.cs
- DataTableNewRowEvent.cs
- UpdatePanelControlTrigger.cs
- CngUIPolicy.cs
- CollectionExtensions.cs
- ColorConvertedBitmap.cs
- BypassElementCollection.cs
- ConfigurationValue.cs
- ListDictionaryInternal.cs
- Int64AnimationUsingKeyFrames.cs
- ControlHelper.cs
- CharEnumerator.cs
- _HTTPDateParse.cs
- SystemThemeKey.cs
- WeakReferenceList.cs
- TabItem.cs
- ControllableStoryboardAction.cs
- NativeCompoundFileAPIs.cs
- ContainsSearchOperator.cs
- OutputWindow.cs
- StringFunctions.cs
- SqlMultiplexer.cs
- TableColumn.cs
- EdmProviderManifest.cs
- ProfileInfo.cs
- TextTreeText.cs
- ListViewItem.cs
- PingReply.cs
- EntitySetBase.cs
- CreateUserWizard.cs
- MarkupProperty.cs
- GlyphsSerializer.cs
- XsdDateTime.cs
- BrushConverter.cs
- ConfigXmlElement.cs
- WhileDesigner.xaml.cs
- DataControlFieldHeaderCell.cs
- FontStretchConverter.cs
- AnnotationResourceCollection.cs
- CompositeScriptReference.cs
- WebPartDisplayModeCancelEventArgs.cs
- TargetControlTypeCache.cs
- JsonReader.cs
- ColumnCollectionEditor.cs
- commandenforcer.cs
- TextBounds.cs
- BCryptNative.cs
- RegexRunnerFactory.cs
- Parallel.cs
- PropertyGrid.cs
- Metafile.cs
- ProfileEventArgs.cs
- AlternateViewCollection.cs
- XmlSerializerNamespaces.cs
- SuppressMergeCheckAttribute.cs
- Memoizer.cs
- RowUpdatedEventArgs.cs
- ClientApiGenerator.cs
- Point.cs
- QueryAsyncResult.cs
- SqlConnection.cs
- FlowDocumentView.cs
- DeclarativeCatalogPart.cs
- XNameConverter.cs
- ProtocolsConfigurationHandler.cs
- Socket.cs
- OleDbStruct.cs
- RealProxy.cs
- Baml2006Reader.cs
- OpenTypeMethods.cs
- UnSafeCharBuffer.cs
- InvalidComObjectException.cs