Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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.
//
//-----------------------------------------------------------------------------
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
- WebPartMenuStyle.cs
- XmlException.cs
- VirtualPathProvider.cs
- ErrorEventArgs.cs
- MLangCodePageEncoding.cs
- DisplayNameAttribute.cs
- BaseCodeDomTreeGenerator.cs
- PrintPageEvent.cs
- GridToolTip.cs
- EntityTransaction.cs
- TextRange.cs
- SqlDataRecord.cs
- ListItemCollection.cs
- CollectionAdapters.cs
- ArgumentDesigner.xaml.cs
- XhtmlBasicPageAdapter.cs
- LayoutEditorPart.cs
- ContractUtils.cs
- ApplicationSettingsBase.cs
- ToolStripHighContrastRenderer.cs
- EventWaitHandle.cs
- DataGridTableStyleMappingNameEditor.cs
- PlainXmlWriter.cs
- RemotingAttributes.cs
- DataGridViewRowCollection.cs
- MiniCustomAttributeInfo.cs
- Internal.cs
- AssociationTypeEmitter.cs
- DependencyObjectProvider.cs
- GraphicsPathIterator.cs
- GZipUtils.cs
- ParserStreamGeometryContext.cs
- SerializationFieldInfo.cs
- XamlTypeMapperSchemaContext.cs
- ImageIndexEditor.cs
- recordstate.cs
- UserNameSecurityTokenAuthenticator.cs
- UniqueTransportManagerRegistration.cs
- StickyNoteAnnotations.cs
- WebPartEditorApplyVerb.cs
- TextBoxRenderer.cs
- XmlDataCollection.cs
- ComponentResourceKey.cs
- IfAction.cs
- SafeEventLogReadHandle.cs
- SqlDataSourceCommandEventArgs.cs
- counter.cs
- UrlAuthFailedErrorFormatter.cs
- PersonalizablePropertyEntry.cs
- NavigateEvent.cs
- DurableInstanceManager.cs
- EventDescriptor.cs
- KeyValueConfigurationElement.cs
- FontSizeConverter.cs
- _ConnectStream.cs
- UrlAuthFailedErrorFormatter.cs
- SrgsSemanticInterpretationTag.cs
- Bidi.cs
- SolidColorBrush.cs
- XhtmlConformanceSection.cs
- Root.cs
- ScopelessEnumAttribute.cs
- TemplateBindingExpression.cs
- DataComponentMethodGenerator.cs
- HttpRequestWrapper.cs
- EntityParameter.cs
- GenerateScriptTypeAttribute.cs
- ReferencedCollectionType.cs
- CompoundFileStorageReference.cs
- DataTable.cs
- EncryptedType.cs
- BehaviorEditorPart.cs
- IndexExpression.cs
- TemplateBindingExtension.cs
- JsonWriterDelegator.cs
- FindCriteriaCD1.cs
- Convert.cs
- ISessionStateStore.cs
- BaseValidator.cs
- BoolExpression.cs
- Metafile.cs
- ToolboxItem.cs
- RegistryConfigurationProvider.cs
- Endpoint.cs
- XsltException.cs
- KnownBoxes.cs
- CrossContextChannel.cs
- WorkflowApplicationCompletedEventArgs.cs
- RawStylusInput.cs
- SR.cs
- DotExpr.cs
- remotingproxy.cs
- AssemblyFilter.cs
- _LocalDataStore.cs
- WebBrowserNavigatingEventHandler.cs
- WebPartDisplayModeCollection.cs
- PasswordPropertyTextAttribute.cs
- ProviderCollection.cs
- JsonXmlDataContract.cs
- PropertyPathWorker.cs