Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / TableLayoutCellPaintEventArgs.cs / 1 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PersistNameAttribute.cs
- Scheduler.cs
- ContractMethodParameterInfo.cs
- PathFigureCollection.cs
- UInt16Converter.cs
- StrokeSerializer.cs
- RuntimeResourceSet.cs
- CustomPopupPlacement.cs
- UpdatePanelTrigger.cs
- EntityProviderFactory.cs
- mediapermission.cs
- CapabilitiesState.cs
- SignatureGenerator.cs
- DelegateHelpers.cs
- PropertyItemInternal.cs
- Type.cs
- FontStretches.cs
- FileSystemWatcher.cs
- TargetConverter.cs
- EastAsianLunisolarCalendar.cs
- UrlAuthFailedErrorFormatter.cs
- Border.cs
- MbpInfo.cs
- TextMetrics.cs
- ComponentResourceKeyConverter.cs
- SourceFilter.cs
- PermissionRequestEvidence.cs
- ReadOnlyState.cs
- DefaultSerializationProviderAttribute.cs
- DataServiceRequestOfT.cs
- DigestTraceRecordHelper.cs
- MetadataItemEmitter.cs
- MultiViewDesigner.cs
- ToolStripItemRenderEventArgs.cs
- SingleObjectCollection.cs
- EntityDataSourceQueryBuilder.cs
- CodeGenerator.cs
- TableAdapterManagerHelper.cs
- NodeFunctions.cs
- UnwrappedTypesXmlSerializerManager.cs
- MoveSizeWinEventHandler.cs
- EmptyControlCollection.cs
- TemplateKey.cs
- EnumUnknown.cs
- Int64Animation.cs
- ProxyWebPart.cs
- WebScriptMetadataFormatter.cs
- CacheRequest.cs
- ScrollEventArgs.cs
- RequestUriProcessor.cs
- AutomationPattern.cs
- MultiView.cs
- StdValidatorsAndConverters.cs
- Privilege.cs
- WaitForChangedResult.cs
- Table.cs
- Size3DConverter.cs
- DataGridViewRow.cs
- Rotation3D.cs
- StylusOverProperty.cs
- JsonEnumDataContract.cs
- TextDocumentView.cs
- DataGridViewRowPrePaintEventArgs.cs
- DebugView.cs
- SecUtil.cs
- SendingRequestEventArgs.cs
- SectionUpdates.cs
- XamlVector3DCollectionSerializer.cs
- HotCommands.cs
- ComNativeDescriptor.cs
- DataListCommandEventArgs.cs
- Soap12ServerProtocol.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- _NestedMultipleAsyncResult.cs
- KeyedCollection.cs
- CodeGenHelper.cs
- DeviceFilterEditorDialog.cs
- DrawToolTipEventArgs.cs
- RootBrowserWindowAutomationPeer.cs
- PerformanceCounterPermissionEntryCollection.cs
- XmlHierarchicalEnumerable.cs
- HttpCacheVaryByContentEncodings.cs
- TypographyProperties.cs
- InternalsVisibleToAttribute.cs
- DbProviderFactory.cs
- EventPropertyMap.cs
- ProcessingInstructionAction.cs
- UnmanagedMemoryStreamWrapper.cs
- DataQuery.cs
- AutoGeneratedFieldProperties.cs
- TypeGeneratedEventArgs.cs
- CodePropertyReferenceExpression.cs
- RTLAwareMessageBox.cs
- DataRecord.cs
- XmlSchemaValidationException.cs
- RolePrincipal.cs
- ContextBase.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- MultiBindingExpression.cs
- CompoundFileStreamReference.cs