Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowHeightInfoPushedEventArgs.cs / 1 / DataGridViewRowHeightInfoPushedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Diagnostics; using System.ComponentModel; ///public class DataGridViewRowHeightInfoPushedEventArgs : HandledEventArgs { private int rowIndex; private int height; private int minimumHeight; internal DataGridViewRowHeightInfoPushedEventArgs(int rowIndex, int height, int minimumHeight) : base(false) { Debug.Assert(rowIndex >= -1); this.rowIndex = rowIndex; this.height = height; this.minimumHeight = minimumHeight; } /// public int Height { get { return this.height; } } /// public int MinimumHeight { get { return this.minimumHeight; } } /// public int RowIndex { get { return this.rowIndex; } } } } // 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
- RenderDataDrawingContext.cs
- WebBrowsableAttribute.cs
- SymbolMethod.cs
- TransformProviderWrapper.cs
- SHA256CryptoServiceProvider.cs
- ProfileSettingsCollection.cs
- MD5CryptoServiceProvider.cs
- DesignBinding.cs
- ArraySortHelper.cs
- DecimalMinMaxAggregationOperator.cs
- Utilities.cs
- StringAttributeCollection.cs
- FullTextLine.cs
- XmlSchemaDatatype.cs
- AmbientLight.cs
- ImageBrush.cs
- Type.cs
- DataGridViewColumnStateChangedEventArgs.cs
- X509ChainElement.cs
- TextTreeDeleteContentUndoUnit.cs
- UnsafeNativeMethods.cs
- XsdValidatingReader.cs
- PackageRelationship.cs
- Variable.cs
- ObjectQueryProvider.cs
- WebPartDisplayModeCollection.cs
- Effect.cs
- DesignerView.xaml.cs
- ButtonField.cs
- HTTPNotFoundHandler.cs
- SchemaObjectWriter.cs
- BinaryFormatterWriter.cs
- TransformGroup.cs
- GenericUriParser.cs
- HiddenFieldPageStatePersister.cs
- SqlUtil.cs
- FormParameter.cs
- ProjectionCamera.cs
- ConnectionStringsExpressionEditor.cs
- SafeRightsManagementQueryHandle.cs
- StackOverflowException.cs
- CodeTypeDeclarationCollection.cs
- RoleGroupCollectionEditor.cs
- HelpEvent.cs
- DataGridViewCellStyle.cs
- ping.cs
- UrlMappingsModule.cs
- VisualBrush.cs
- ProfileManager.cs
- HyperLink.cs
- PassportAuthenticationModule.cs
- WebServiceReceive.cs
- StyleHelper.cs
- WindowsFormsHost.cs
- ComPersistableTypeElement.cs
- HttpRawResponse.cs
- OleDbConnectionFactory.cs
- ProvidePropertyAttribute.cs
- ScriptingRoleServiceSection.cs
- NameValueConfigurationCollection.cs
- GridViewRowPresenterBase.cs
- ScrollProperties.cs
- SelectedGridItemChangedEvent.cs
- querybuilder.cs
- FontStyle.cs
- ResourceDictionary.cs
- ContentAlignmentEditor.cs
- KnowledgeBase.cs
- FormsIdentity.cs
- CodeThrowExceptionStatement.cs
- ConfigPathUtility.cs
- SqlDataAdapter.cs
- ContentPropertyAttribute.cs
- DataGridView.cs
- ResourceDictionaryCollection.cs
- MetadataHelper.cs
- DragDrop.cs
- DependencyPropertyHelper.cs
- BindingSource.cs
- ReadWriteSpinLock.cs
- NativeMethods.cs
- WebPartCatalogCloseVerb.cs
- SingleAnimationBase.cs
- GuidConverter.cs
- XPathExpr.cs
- DocumentApplicationJournalEntryEventArgs.cs
- InputScope.cs
- Control.cs
- TextElement.cs
- BaseCollection.cs
- InstalledFontCollection.cs
- DetailsViewPagerRow.cs
- TextFormatterContext.cs
- TaskFileService.cs
- CornerRadiusConverter.cs
- DataGridTextBox.cs
- ToolStripOverflow.cs
- TextBounds.cs
- RequiredFieldValidator.cs
- MsmqProcessProtocolHandler.cs