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
- ScriptManager.cs
- _AutoWebProxyScriptWrapper.cs
- SimpleApplicationHost.cs
- PageThemeCodeDomTreeGenerator.cs
- XmlDictionaryWriter.cs
- XmlSchemaComplexContent.cs
- HtmlInputButton.cs
- MetabaseSettings.cs
- FormsAuthenticationUser.cs
- FamilyTypefaceCollection.cs
- CalendarAutoFormatDialog.cs
- KeysConverter.cs
- RenderContext.cs
- GlobalizationAssembly.cs
- HttpConfigurationContext.cs
- XmlReturnReader.cs
- StreamReader.cs
- SqlDataSource.cs
- BamlRecordReader.cs
- TableLayoutStyleCollection.cs
- FontStretchConverter.cs
- MenuItemStyleCollection.cs
- CalendarButtonAutomationPeer.cs
- ArcSegment.cs
- DataTemplateSelector.cs
- DependencyPropertyAttribute.cs
- DataObjectCopyingEventArgs.cs
- AgileSafeNativeMemoryHandle.cs
- SymbolDocumentGenerator.cs
- ObjectParameter.cs
- Typography.cs
- FaultBookmark.cs
- DocumentSchemaValidator.cs
- TextEndOfSegment.cs
- UnsafeNativeMethodsPenimc.cs
- TdsParserSafeHandles.cs
- EditorPartChrome.cs
- StateMachine.cs
- FrameworkTextComposition.cs
- WebBrowserUriTypeConverter.cs
- PageAction.cs
- PathSegment.cs
- BamlLocalizableResourceKey.cs
- ToggleProviderWrapper.cs
- ComplexBindingPropertiesAttribute.cs
- VectorAnimation.cs
- RunWorkerCompletedEventArgs.cs
- QuotedPrintableStream.cs
- UnitySerializationHolder.cs
- ClientSettingsProvider.cs
- EdgeModeValidation.cs
- View.cs
- GraphicsState.cs
- WebRequestModulesSection.cs
- XmlCountingReader.cs
- VirtualizedCellInfoCollection.cs
- StyleHelper.cs
- Compiler.cs
- PriorityBindingExpression.cs
- ElementProxy.cs
- DataGridPagerStyle.cs
- CollectionView.cs
- EventLogPermissionEntry.cs
- SqlNodeTypeOperators.cs
- QilTargetType.cs
- HybridCollection.cs
- EditCommandColumn.cs
- TiffBitmapDecoder.cs
- EncryptedKeyIdentifierClause.cs
- RegistryExceptionHelper.cs
- Inflater.cs
- WindowsGraphicsWrapper.cs
- DesignerAdapterUtil.cs
- PeerInvitationResponse.cs
- HttpApplicationFactory.cs
- GeometryDrawing.cs
- LocationSectionRecord.cs
- ColorConvertedBitmap.cs
- FilterElement.cs
- FixedSchema.cs
- SiteMapProvider.cs
- UniqueEventHelper.cs
- RoleManagerSection.cs
- IItemContainerGenerator.cs
- CursorConverter.cs
- BinHexEncoder.cs
- SqlClientWrapperSmiStream.cs
- KeysConverter.cs
- TextPointerBase.cs
- XmlEncodedRawTextWriter.cs
- DrawingContextWalker.cs
- HtmlElementCollection.cs
- Queue.cs
- OperationContext.cs
- CompositeFontParser.cs
- CheckedPointers.cs
- SendMessageChannelCache.cs
- RuleInfoComparer.cs
- ISFClipboardData.cs
- FrameworkContentElement.cs