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
- UnsafeNativeMethods.cs
- UIElementPropertyUndoUnit.cs
- ClientSettings.cs
- BufferedStream2.cs
- IncrementalReadDecoders.cs
- PersonalizationEntry.cs
- SqlOuterApplyReducer.cs
- ConsoleTraceListener.cs
- CalloutQueueItem.cs
- HttpsHostedTransportConfiguration.cs
- DbDeleteCommandTree.cs
- RIPEMD160.cs
- SoapRpcServiceAttribute.cs
- DataSourceDescriptorCollection.cs
- ClaimSet.cs
- ISFClipboardData.cs
- Semaphore.cs
- HttpWriter.cs
- PeerEndPoint.cs
- CommandEventArgs.cs
- CapabilitiesUse.cs
- EmptyEnumerator.cs
- XmlSortKey.cs
- WebConfigurationManager.cs
- OperatingSystemVersionCheck.cs
- ModuleBuilderData.cs
- TemplatedMailWebEventProvider.cs
- TagMapInfo.cs
- CommentAction.cs
- AppliedDeviceFiltersDialog.cs
- UInt64Converter.cs
- login.cs
- ClientScriptManagerWrapper.cs
- DataGridViewRowPrePaintEventArgs.cs
- StateDesigner.TransitionInfo.cs
- XdrBuilder.cs
- ElapsedEventArgs.cs
- Vector3DAnimationBase.cs
- MetabaseReader.cs
- HttpContextBase.cs
- SortFieldComparer.cs
- TimeSpanStorage.cs
- SyndicationPerson.cs
- RolePrincipal.cs
- IPPacketInformation.cs
- BitmapEffectCollection.cs
- PixelFormatConverter.cs
- SQLDecimalStorage.cs
- ClickablePoint.cs
- ManualResetEventSlim.cs
- CodeTypeDeclarationCollection.cs
- XmlSchemaAny.cs
- EditorPart.cs
- StringHandle.cs
- TileBrush.cs
- FieldAccessException.cs
- URL.cs
- TripleDES.cs
- PathSegmentCollection.cs
- SiteMapDataSourceView.cs
- Help.cs
- WebPartMinimizeVerb.cs
- ApplicationContext.cs
- Size3DConverter.cs
- LayoutEvent.cs
- EntitySqlQueryBuilder.cs
- PersonalizationStateInfo.cs
- FileUpload.cs
- DocumentGridPage.cs
- METAHEADER.cs
- InheritanceContextChangedEventManager.cs
- safex509handles.cs
- RNGCryptoServiceProvider.cs
- Bold.cs
- PocoEntityKeyStrategy.cs
- safemediahandle.cs
- WebBrowserHelper.cs
- HttpMethodAttribute.cs
- RulePatternOps.cs
- ISAPIRuntime.cs
- DeploymentExceptionMapper.cs
- BaseParser.cs
- ProfileGroupSettings.cs
- ExpressionBuilder.cs
- ToolboxItemImageConverter.cs
- CommandID.cs
- Rect.cs
- SpotLight.cs
- CFStream.cs
- JavascriptCallbackMessageInspector.cs
- MediaPlayer.cs
- FileLevelControlBuilderAttribute.cs
- TableRowCollection.cs
- SqlUnionizer.cs
- MessageSecurityOverHttpElement.cs
- DataTableReader.cs
- PathParser.cs
- recordstatefactory.cs
- DrawListViewSubItemEventArgs.cs
- MenuAdapter.cs