Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridViewCellFormattingEventArgs.cs / 1305376 / DataGridViewCellFormattingEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.ComponentModel; ///public class DataGridViewCellFormattingEventArgs : ConvertEventArgs { private int columnIndex, rowIndex; private DataGridViewCellStyle cellStyle; private bool formattingApplied; /// public DataGridViewCellFormattingEventArgs(int columnIndex, int rowIndex, object value, Type desiredType, DataGridViewCellStyle cellStyle) : base(value, desiredType) { if (columnIndex < -1) { throw new ArgumentOutOfRangeException("columnIndex"); } if (rowIndex < -1) { throw new ArgumentOutOfRangeException("rowIndex"); } this.columnIndex = columnIndex; this.rowIndex = rowIndex; this.cellStyle = cellStyle; } /// public DataGridViewCellStyle CellStyle { get { return this.cellStyle; } set { this.cellStyle = value; } } /// public int ColumnIndex { get { return this.columnIndex; } } /// public bool FormattingApplied { get { return this.formattingApplied; } set { this.formattingApplied = value; } } /// public int RowIndex { get { return this.rowIndex; } } } } // 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
- Nullable.cs
- XmlQueryType.cs
- OleDbRowUpdatedEvent.cs
- PinnedBufferMemoryStream.cs
- PtsContext.cs
- Journaling.cs
- ParameterReplacerVisitor.cs
- ComponentCollection.cs
- ConfigXmlDocument.cs
- ToolStrip.cs
- BuilderPropertyEntry.cs
- TextPatternIdentifiers.cs
- COM2FontConverter.cs
- ThaiBuddhistCalendar.cs
- SqlUtil.cs
- SynchronizationContext.cs
- BindingList.cs
- CapabilitiesState.cs
- StylusSystemGestureEventArgs.cs
- Message.cs
- ParsedAttributeCollection.cs
- ArraySegment.cs
- SessionStateItemCollection.cs
- Style.cs
- RemoteWebConfigurationHostStream.cs
- HostExecutionContextManager.cs
- TileModeValidation.cs
- ListBoxChrome.cs
- Msmq4SubqueuePoisonHandler.cs
- EndPoint.cs
- MsmqAppDomainProtocolHandler.cs
- DynamicResourceExtensionConverter.cs
- PatternMatcher.cs
- FormatterServices.cs
- SingleConverter.cs
- DefaultEventAttribute.cs
- TablePatternIdentifiers.cs
- TableLayoutPanelCellPosition.cs
- OleDbConnectionInternal.cs
- ConditionalDesigner.cs
- GetPageNumberCompletedEventArgs.cs
- SecUtil.cs
- DependencyObject.cs
- SignatureToken.cs
- ApplicationSecurityManager.cs
- processwaithandle.cs
- EntitySqlQueryCacheKey.cs
- Size3DValueSerializer.cs
- DataGridViewControlCollection.cs
- BindingsCollection.cs
- OptimisticConcurrencyException.cs
- ResourceDisplayNameAttribute.cs
- ValidatingCollection.cs
- ExpressionNormalizer.cs
- LookupNode.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- ProfilePropertySettingsCollection.cs
- ServiceModelDictionary.cs
- PasswordDeriveBytes.cs
- EnumerableCollectionView.cs
- Subset.cs
- GreenMethods.cs
- GcSettings.cs
- CategoryGridEntry.cs
- Pool.cs
- LoadedEvent.cs
- PublisherMembershipCondition.cs
- WSSecurityOneDotZeroSendSecurityHeader.cs
- Point3D.cs
- FontSizeConverter.cs
- ResourceDefaultValueAttribute.cs
- FixedSOMImage.cs
- DataSourceControl.cs
- DataGridViewRowCancelEventArgs.cs
- SizeChangedEventArgs.cs
- OracleConnectionStringBuilder.cs
- ResourcePool.cs
- Buffer.cs
- HtmlInputHidden.cs
- CompositeDuplexElement.cs
- SchemaEntity.cs
- DataControlExtensions.cs
- HtmlInputReset.cs
- RegistryExceptionHelper.cs
- HorizontalAlignConverter.cs
- FillErrorEventArgs.cs
- ResourceProperty.cs
- ConnectorSelectionGlyph.cs
- EventInfo.cs
- CodeSnippetTypeMember.cs
- ReferenceConverter.cs
- MouseActionConverter.cs
- ISFClipboardData.cs
- StylusTip.cs
- ToolStripItemImageRenderEventArgs.cs
- ToolboxItem.cs
- EntitySetBaseCollection.cs
- BamlResourceDeserializer.cs
- ReadOnlyTernaryTree.cs
- PropertyGeneratedEventArgs.cs