Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // 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
- Utils.cs
- EmissiveMaterial.cs
- StrokeSerializer.cs
- FormsAuthenticationCredentials.cs
- WebPartEditorCancelVerb.cs
- SplitterDesigner.cs
- XmlQueryRuntime.cs
- InlinedLocationReference.cs
- AlternateView.cs
- ToolStripItemEventArgs.cs
- RequestQueryProcessor.cs
- WebPartZone.cs
- DocumentOrderComparer.cs
- ActivationArguments.cs
- Operand.cs
- RepeaterItem.cs
- DataSourceProvider.cs
- ScriptControlDescriptor.cs
- OutputCacheSettings.cs
- FragmentNavigationEventArgs.cs
- TextEditorParagraphs.cs
- ListBindingHelper.cs
- PropertyEmitter.cs
- StringValidator.cs
- DataGridTextColumn.cs
- SelectorItemAutomationPeer.cs
- SID.cs
- WsatServiceCertificate.cs
- Missing.cs
- DispatcherObject.cs
- XmlHierarchicalEnumerable.cs
- XamlDebuggerXmlReader.cs
- XmlWrappingReader.cs
- XPathArrayIterator.cs
- InternalBufferManager.cs
- Utils.cs
- EntityViewContainer.cs
- TextRenderingModeValidation.cs
- InvalidProgramException.cs
- SchemaMerger.cs
- RegexCompilationInfo.cs
- ResourceExpressionBuilder.cs
- XmlFormatWriterGenerator.cs
- QilCloneVisitor.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- StorageAssociationSetMapping.cs
- ObjectViewListener.cs
- XmlSchemaSimpleContentRestriction.cs
- BookmarkScope.cs
- MessageEnumerator.cs
- UserControl.cs
- WebPartAuthorizationEventArgs.cs
- RegexRunner.cs
- GroupItemAutomationPeer.cs
- Image.cs
- MultipleViewProviderWrapper.cs
- ToolboxItemFilterAttribute.cs
- ViewStateModeByIdAttribute.cs
- List.cs
- TrueReadOnlyCollection.cs
- sitestring.cs
- TextHidden.cs
- ArgumentValidation.cs
- XmlNamespaceMapping.cs
- Preprocessor.cs
- ConstantExpression.cs
- TemplateKey.cs
- AnnotationComponentManager.cs
- IssuanceLicense.cs
- ItemCollection.cs
- TdsParameterSetter.cs
- UnicodeEncoding.cs
- odbcmetadatacolumnnames.cs
- ProjectionPlan.cs
- SchemaSetCompiler.cs
- ProtocolsConfigurationEntry.cs
- TagElement.cs
- HttpHandlersSection.cs
- BaseTemplateBuildProvider.cs
- EdmConstants.cs
- OdbcHandle.cs
- OracleNumber.cs
- MetadataReference.cs
- ImageMapEventArgs.cs
- ICspAsymmetricAlgorithm.cs
- WebPartZone.cs
- WebPartsSection.cs
- FolderBrowserDialog.cs
- Int32Rect.cs
- SyndicationDeserializer.cs
- EventArgs.cs
- Header.cs
- SafeNativeMethods.cs
- XsdDateTime.cs
- TextDecorationCollection.cs
- DataServiceContext.cs
- ConnectionPointCookie.cs
- TwoPhaseCommitProxy.cs
- ToolZone.cs
- ListView.cs