Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewRowHeightInfoNeededEventArgs.cs / 1305376 / DataGridViewRowHeightInfoNeededEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Diagnostics; using System.Globalization; ///public class DataGridViewRowHeightInfoNeededEventArgs : EventArgs { private int rowIndex; private int height; private int minimumHeight; internal DataGridViewRowHeightInfoNeededEventArgs() { this.rowIndex = -1; this.height = -1; this.minimumHeight = -1; } /// public int Height { get { return this.height; } set { if (value < this.minimumHeight) { value = this.minimumHeight; } if (value > DataGridViewBand.maxBandThickness) { throw new ArgumentOutOfRangeException("Height", SR.GetString(SR.InvalidHighBoundArgumentEx, "Height", (value).ToString(CultureInfo.CurrentCulture), (DataGridViewBand.maxBandThickness).ToString(CultureInfo.CurrentCulture))); } this.height = value; } } /// public int MinimumHeight { get { return this.minimumHeight; } set { if (value < DataGridViewBand.minBandThickness) { throw new ArgumentOutOfRangeException("MinimumHeight", value, SR.GetString(SR.DataGridViewBand_MinimumHeightSmallerThanOne, (DataGridViewBand.minBandThickness).ToString(CultureInfo.CurrentCulture))); } if (this.height < value) { this.height = value; } this.minimumHeight = value; } } /// public int RowIndex { get { return this.rowIndex; } } internal void SetProperties(int rowIndex, int height, int minimumHeight) { Debug.Assert(rowIndex >= -1); Debug.Assert(height > 0); Debug.Assert(minimumHeight > 0); Debug.Assert(height >= minimumHeight); this.rowIndex = rowIndex; this.height = height; this.minimumHeight = minimumHeight; } } } // 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
- ApplicationServiceManager.cs
- coordinatorfactory.cs
- CompilationPass2TaskInternal.cs
- XmlSchemaSet.cs
- DateBoldEvent.cs
- Track.cs
- ImagingCache.cs
- AssemblyBuilder.cs
- ListItem.cs
- CharKeyFrameCollection.cs
- OperatingSystem.cs
- Registry.cs
- TwoPhaseCommit.cs
- ApplicationBuildProvider.cs
- KeyConverter.cs
- ProxyWebPartConnectionCollection.cs
- Publisher.cs
- ServiceMemoryGates.cs
- ContentPlaceHolder.cs
- XmlWrappingReader.cs
- XmlSerializerVersionAttribute.cs
- ReadWriteSpinLock.cs
- XPathNodeInfoAtom.cs
- DataGridViewLayoutData.cs
- CreateParams.cs
- Attributes.cs
- IntSecurity.cs
- DataAdapter.cs
- DateTimeFormatInfoScanner.cs
- EventProviderWriter.cs
- Tile.cs
- ProfileSection.cs
- PassportPrincipal.cs
- BindingOperations.cs
- SqlCaseSimplifier.cs
- TypeDescriptionProviderAttribute.cs
- SuppressIldasmAttribute.cs
- TextBounds.cs
- CollectionType.cs
- MorphHelpers.cs
- DataSourceXmlAttributeAttribute.cs
- UnhandledExceptionEventArgs.cs
- templategroup.cs
- ServerValidateEventArgs.cs
- SRGSCompiler.cs
- HttpProxyTransportBindingElement.cs
- ImageSourceTypeConverter.cs
- SchemaObjectWriter.cs
- StrokeNode.cs
- SessionParameter.cs
- ToggleProviderWrapper.cs
- GeneratedContractType.cs
- SequentialWorkflowHeaderFooter.cs
- GiveFeedbackEvent.cs
- TileModeValidation.cs
- ListBox.cs
- QilList.cs
- XmlDownloadManager.cs
- EncodingDataItem.cs
- LiteralLink.cs
- Vertex.cs
- GlobalizationSection.cs
- Int16Converter.cs
- CurrentChangingEventArgs.cs
- InvokePattern.cs
- LinearGradientBrush.cs
- DeferredSelectedIndexReference.cs
- GlyphRunDrawing.cs
- ImmutableCollection.cs
- LinkDescriptor.cs
- AttributeProviderAttribute.cs
- Filter.cs
- CodeTypeDelegate.cs
- ContextProperty.cs
- FileLoadException.cs
- StringStorage.cs
- ExportOptions.cs
- FilterEventArgs.cs
- FilteredXmlReader.cs
- SmtpCommands.cs
- TextContainerChangeEventArgs.cs
- PeerContact.cs
- PropertyHelper.cs
- DefaultWorkflowLoaderService.cs
- DataSourceConverter.cs
- TableChangeProcessor.cs
- DoubleStorage.cs
- OdbcParameterCollection.cs
- Pair.cs
- UserControlAutomationPeer.cs
- AspProxy.cs
- VisualBasicImportReference.cs
- TraceContextRecord.cs
- SynchronizedInputHelper.cs
- SqlInternalConnection.cs
- ForeignKeyConstraint.cs
- URL.cs
- CodeObject.cs
- XmlReflectionImporter.cs
- TextServicesLoader.cs