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
- XmlIgnoreAttribute.cs
- FederatedMessageSecurityOverHttp.cs
- TextEditorParagraphs.cs
- AutomationElement.cs
- TypeElement.cs
- PageBuildProvider.cs
- Pair.cs
- RichTextBox.cs
- NativeMethods.cs
- PropertyFilter.cs
- CustomAttributeBuilder.cs
- RouteItem.cs
- ToolboxSnapDragDropEventArgs.cs
- PrimarySelectionAdorner.cs
- DataGridViewAutoSizeModeEventArgs.cs
- OletxResourceManager.cs
- ThreadStaticAttribute.cs
- ClientOptions.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- NotifyIcon.cs
- PolygonHotSpot.cs
- DataTemplate.cs
- DeferredReference.cs
- ImageFormat.cs
- DataGridViewTextBoxEditingControl.cs
- XmlSerializerAssemblyAttribute.cs
- StoreAnnotationsMap.cs
- filewebrequest.cs
- AdCreatedEventArgs.cs
- ObjectListCommand.cs
- TimerElapsedEvenArgs.cs
- SqlTransaction.cs
- ObjectSerializerFactory.cs
- VerificationException.cs
- RegexCaptureCollection.cs
- Pair.cs
- ManifestSignatureInformation.cs
- ServiceNameElement.cs
- MLangCodePageEncoding.cs
- ExpressionBindingsDialog.cs
- CodeExpressionRuleDeclaration.cs
- BlurEffect.cs
- TraceHandler.cs
- LineVisual.cs
- ObjectItemCollection.cs
- ToolStripItemEventArgs.cs
- UIElementHelper.cs
- xdrvalidator.cs
- ControlDesigner.cs
- ReflectEventDescriptor.cs
- URL.cs
- autovalidator.cs
- SqlInternalConnectionSmi.cs
- ListMarkerLine.cs
- WorkflowDesigner.cs
- ProgressBar.cs
- WpfKnownTypeInvoker.cs
- DataGridCaption.cs
- StateItem.cs
- ControlCachePolicy.cs
- CodeDefaultValueExpression.cs
- RegionInfo.cs
- NullableBoolConverter.cs
- ACE.cs
- NumberEdit.cs
- PersonalizationProvider.cs
- DataGridViewTextBoxColumn.cs
- PerformanceCounterScope.cs
- FixedSOMLineRanges.cs
- DataConnectionHelper.cs
- InstanceNormalEvent.cs
- ChangeInterceptorAttribute.cs
- PublishLicense.cs
- ComponentDispatcherThread.cs
- JournalEntryListConverter.cs
- LoginCancelEventArgs.cs
- QilValidationVisitor.cs
- SqlBooleanizer.cs
- DecoderExceptionFallback.cs
- ConfigurationPermission.cs
- ExtractorMetadata.cs
- EpmSyndicationContentSerializer.cs
- unsafeIndexingFilterStream.cs
- DeclaredTypeValidatorAttribute.cs
- UrlAuthorizationModule.cs
- EncoderExceptionFallback.cs
- InputScopeAttribute.cs
- PeerHopCountAttribute.cs
- ToolStripSplitButton.cs
- SystemWebCachingSectionGroup.cs
- Mappings.cs
- PackWebRequestFactory.cs
- QueryContext.cs
- QueryGeneratorBase.cs
- SQLDouble.cs
- XmlSerializer.cs
- XmlText.cs
- RadioButtonPopupAdapter.cs
- Marshal.cs
- DataGridViewLinkColumn.cs