Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // 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
- GPPOINTF.cs
- SqlInternalConnectionTds.cs
- NameTable.cs
- EdmProperty.cs
- AutoGeneratedFieldProperties.cs
- TreeNodeStyle.cs
- DbConnectionPoolCounters.cs
- DbDataSourceEnumerator.cs
- ModelItemImpl.cs
- TypeNameConverter.cs
- RelationshipManager.cs
- StylusPointPropertyId.cs
- SafeNativeMemoryHandle.cs
- DataGridComboBoxColumn.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- DbConnectionPoolIdentity.cs
- NativeWindow.cs
- SqlDataReaderSmi.cs
- ConcurrencyMode.cs
- GridViewRowCollection.cs
- XmlAttributes.cs
- SafeCryptoHandles.cs
- StreamUpgradeBindingElement.cs
- AppSettingsExpressionBuilder.cs
- InvokeMethodActivity.cs
- DBBindings.cs
- OpCellTreeNode.cs
- ListViewDeleteEventArgs.cs
- BitVector32.cs
- HttpStreams.cs
- BooleanToVisibilityConverter.cs
- TokenCreationException.cs
- AccessDataSourceDesigner.cs
- StateWorkerRequest.cs
- EntityDataSourceSelectedEventArgs.cs
- VisualBasic.cs
- UserControl.cs
- OutputWindow.cs
- SessionEndedEventArgs.cs
- SqlXmlStorage.cs
- MetadataException.cs
- ToolStripSplitStackLayout.cs
- UnsafeNativeMethods.cs
- ExternalCalls.cs
- SharedStatics.cs
- ActiveXHost.cs
- SqlUnionizer.cs
- ExpressionBuilder.cs
- DesignerGeometryHelper.cs
- Int32Converter.cs
- WmlListAdapter.cs
- TreeWalker.cs
- DragDeltaEventArgs.cs
- OrCondition.cs
- SQLInt64Storage.cs
- TraceFilter.cs
- RandomNumberGenerator.cs
- XmlKeywords.cs
- Executor.cs
- NavigationFailedEventArgs.cs
- CompositeCollection.cs
- ColorBlend.cs
- MetadataPropertyvalue.cs
- DataGridViewCellLinkedList.cs
- DataTableMapping.cs
- DoubleLinkListEnumerator.cs
- Token.cs
- DataControlFieldHeaderCell.cs
- ToolBarTray.cs
- GridViewDeletedEventArgs.cs
- FormViewDesigner.cs
- OrderPreservingPipeliningSpoolingTask.cs
- StringFreezingAttribute.cs
- AppDomainAttributes.cs
- Cell.cs
- HtmlInputHidden.cs
- TableHeaderCell.cs
- ContentIterators.cs
- ExpressionVisitor.cs
- CheckedListBox.cs
- WebResourceUtil.cs
- ModifierKeysConverter.cs
- AnimationClockResource.cs
- SpeakCompletedEventArgs.cs
- SQLBytes.cs
- HwndSource.cs
- HtmlTableCellCollection.cs
- __Filters.cs
- CommonObjectSecurity.cs
- XPathSingletonIterator.cs
- CompilationLock.cs
- PropertyEmitterBase.cs
- RtfControlWordInfo.cs
- StandardRuntimeEnumValidatorAttribute.cs
- PropVariant.cs
- TableLayoutStyleCollection.cs
- DefaultShape.cs
- DesignerOptionService.cs
- CombinedGeometry.cs
- SelectionChangedEventArgs.cs