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
- BitmapScalingModeValidation.cs
 - DeclarativeCatalogPartDesigner.cs
 - LinearQuaternionKeyFrame.cs
 - PrimaryKeyTypeConverter.cs
 - ColorConvertedBitmap.cs
 - TagPrefixAttribute.cs
 - XmlMapping.cs
 - AudioDeviceOut.cs
 - WebPartPersonalization.cs
 - ExecutionEngineException.cs
 - Int64KeyFrameCollection.cs
 - SQLBinary.cs
 - FontDifferentiator.cs
 - ManagedIStream.cs
 - StickyNoteHelper.cs
 - AccessedThroughPropertyAttribute.cs
 - TextAutomationPeer.cs
 - TileModeValidation.cs
 - WebControlToolBoxItem.cs
 - SqlEnums.cs
 - MethodImplAttribute.cs
 - ErrorInfoXmlDocument.cs
 - CodeGen.cs
 - WorkflowServiceHostFactory.cs
 - ChannelTracker.cs
 - HtmlInputText.cs
 - DataGridViewCellStyleConverter.cs
 - TreeBuilder.cs
 - GCHandleCookieTable.cs
 - AxisAngleRotation3D.cs
 - LookupBindingPropertiesAttribute.cs
 - ArgumentOutOfRangeException.cs
 - ProxyBuilder.cs
 - XmlJsonWriter.cs
 - ToolStrip.cs
 - AttributeTableBuilder.cs
 - XamlParser.cs
 - DataGridDetailsPresenterAutomationPeer.cs
 - Quaternion.cs
 - FixedSOMPageElement.cs
 - LineGeometry.cs
 - CapabilitiesAssignment.cs
 - BuildManagerHost.cs
 - MailHeaderInfo.cs
 - DataPager.cs
 - SmtpNetworkElement.cs
 - TableAutomationPeer.cs
 - CaseKeyBox.xaml.cs
 - ObfuscateAssemblyAttribute.cs
 - XmlNamespaceMappingCollection.cs
 - TraceUtility.cs
 - CustomCategoryAttribute.cs
 - UIElementPropertyUndoUnit.cs
 - GradientStopCollection.cs
 - ColumnMap.cs
 - LostFocusEventManager.cs
 - StorageEndPropertyMapping.cs
 - CompilerErrorCollection.cs
 - Color.cs
 - TreeNodeSelectionProcessor.cs
 - BookmarkNameHelper.cs
 - ContextMenuStrip.cs
 - RuntimeComponentFilter.cs
 - PropertiesTab.cs
 - ScaleTransform.cs
 - DropTarget.cs
 - SecurityContext.cs
 - GenerateHelper.cs
 - Grid.cs
 - PerformanceCounterManager.cs
 - ButtonField.cs
 - TextEffectResolver.cs
 - HtmlLink.cs
 - CheckBoxField.cs
 - IntellisenseTextBox.designer.cs
 - ServiceElement.cs
 - COM2AboutBoxPropertyDescriptor.cs
 - EventData.cs
 - Facet.cs
 - PenContext.cs
 - ADMembershipUser.cs
 - LateBoundBitmapDecoder.cs
 - Errors.cs
 - VectorAnimationUsingKeyFrames.cs
 - SqlExpressionNullability.cs
 - MetadataArtifactLoaderFile.cs
 - SpellerInterop.cs
 - DocumentPageHost.cs
 - DeflateEmulationStream.cs
 - ProfileEventArgs.cs
 - SHA512.cs
 - WebResponse.cs
 - FigureParaClient.cs
 - FileDialog.cs
 - BlobPersonalizationState.cs
 - WorkflowEventArgs.cs
 - Statements.cs
 - GlobalizationAssembly.cs
 - SendKeys.cs
 - CharAnimationBase.cs