Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // //----------------------------------------------------------------------------- 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
- EdmRelationshipNavigationPropertyAttribute.cs
- DataSourceView.cs
- OracleDataReader.cs
- Propagator.ExtentPlaceholderCreator.cs
- GrowingArray.cs
- basemetadatamappingvisitor.cs
- FixedSchema.cs
- mediapermission.cs
- EventManager.cs
- AddInAttribute.cs
- DigitShape.cs
- TagMapInfo.cs
- OutputCacheSection.cs
- LocalFileSettingsProvider.cs
- ValidationErrorCollection.cs
- RawStylusActions.cs
- TextTreeNode.cs
- CookieParameter.cs
- DetailsViewRowCollection.cs
- DataGridCaption.cs
- EmissiveMaterial.cs
- Queue.cs
- TextAdaptor.cs
- Int32AnimationUsingKeyFrames.cs
- ArraySet.cs
- ZipIOLocalFileDataDescriptor.cs
- Decimal.cs
- RequestCachingSection.cs
- ContentTextAutomationPeer.cs
- odbcmetadatafactory.cs
- ExpressionReplacer.cs
- Select.cs
- MimeFormReflector.cs
- XmlSchemaParticle.cs
- ContextToken.cs
- OletxEnlistment.cs
- Literal.cs
- DocumentOrderQuery.cs
- SmiEventSink_DeferedProcessing.cs
- SQlBooleanStorage.cs
- DynamicQueryableWrapper.cs
- CompressStream.cs
- XmlSchemaParticle.cs
- WmlCalendarAdapter.cs
- HierarchicalDataBoundControlAdapter.cs
- BrowserCapabilitiesFactoryBase.cs
- EntitySqlQueryCacheKey.cs
- TrackingWorkflowEventArgs.cs
- InkPresenter.cs
- SystemNetworkInterface.cs
- WebEventCodes.cs
- _StreamFramer.cs
- TdsValueSetter.cs
- Vector3D.cs
- MouseActionValueSerializer.cs
- ArgumentNullException.cs
- TimeSpanSecondsConverter.cs
- ColumnReorderedEventArgs.cs
- SqlCachedBuffer.cs
- ScrollContentPresenter.cs
- FunctionImportElement.cs
- DropShadowEffect.cs
- pingexception.cs
- RijndaelManagedTransform.cs
- SchemaNames.cs
- EncryptedType.cs
- DynamicMethod.cs
- FlowLayoutSettings.cs
- BamlResourceContent.cs
- MetadataPropertyvalue.cs
- NetworkInterface.cs
- Exception.cs
- XmlImplementation.cs
- DesigntimeLicenseContextSerializer.cs
- ParallelActivityDesigner.cs
- ItemMap.cs
- updatecommandorderer.cs
- SingleStorage.cs
- ExecutionContext.cs
- ByteFacetDescriptionElement.cs
- QuaternionAnimation.cs
- PropertyDescriptorCollection.cs
- ClusterSafeNativeMethods.cs
- DBAsyncResult.cs
- GenericTypeParameterBuilder.cs
- TraceContextEventArgs.cs
- WebPartConnectionsConnectVerb.cs
- DiscoveryDocumentReference.cs
- NullableConverter.cs
- shaper.cs
- XmlObjectSerializer.cs
- SqlClientFactory.cs
- Point3DValueSerializer.cs
- RightsManagementInformation.cs
- DeclarationUpdate.cs
- DictionarySurrogate.cs
- CalendarBlackoutDatesCollection.cs
- Command.cs
- FlowDocumentView.cs
- ToolboxBitmapAttribute.cs