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
- DataGridViewCheckBoxCell.cs
- AuthenticationService.cs
- ServicePoint.cs
- FormsAuthenticationConfiguration.cs
- PasswordDeriveBytes.cs
- EntitySetBase.cs
- Attributes.cs
- CompositeFontParser.cs
- InputLanguageProfileNotifySink.cs
- BrowserTree.cs
- GeometryModel3D.cs
- ExtendedProtectionPolicyTypeConverter.cs
- NativeMethodsOther.cs
- RadioButtonBaseAdapter.cs
- OneOfElement.cs
- LineServicesCallbacks.cs
- ProcessModuleCollection.cs
- DependencyPropertyValueSerializer.cs
- SizeChangedEventArgs.cs
- OleDbPermission.cs
- TypeDescriptor.cs
- BasicViewGenerator.cs
- UiaCoreApi.cs
- WorkflowInstanceExtensionManager.cs
- UpdateExpressionVisitor.cs
- QueryableFilterUserControl.cs
- MSG.cs
- HttpPostedFile.cs
- EventEntry.cs
- FirstMatchCodeGroup.cs
- InkCollectionBehavior.cs
- ContextMenu.cs
- CompositeTypefaceMetrics.cs
- CheckBox.cs
- DataSourceView.cs
- PathSegmentCollection.cs
- PropertyStore.cs
- ExecutionContext.cs
- TextBoxView.cs
- GcHandle.cs
- ObfuscationAttribute.cs
- CollectionAdapters.cs
- Assert.cs
- ControlValuePropertyAttribute.cs
- ArraySubsetEnumerator.cs
- ArithmeticLiteral.cs
- Int16AnimationBase.cs
- IndentTextWriter.cs
- ErrorRuntimeConfig.cs
- KeyGestureConverter.cs
- PropagatorResult.cs
- IDataContractSurrogate.cs
- SynchronizedDispatch.cs
- ObjectListDesigner.cs
- DataViewManager.cs
- UnicodeEncoding.cs
- DbMetaDataFactory.cs
- WindowsRichEdit.cs
- ArithmeticException.cs
- WizardStepBase.cs
- CustomError.cs
- WebScriptMetadataMessageEncoderFactory.cs
- StylusButtonEventArgs.cs
- IPCCacheManager.cs
- PerformanceCountersElement.cs
- XPathScanner.cs
- ScriptRegistrationManager.cs
- AspNetCompatibilityRequirementsMode.cs
- DataMemberConverter.cs
- EdmScalarPropertyAttribute.cs
- CuspData.cs
- ManualResetEvent.cs
- IconEditor.cs
- InvalidCastException.cs
- WebEventCodes.cs
- ObjectStateEntry.cs
- AssertHelper.cs
- ICspAsymmetricAlgorithm.cs
- Operator.cs
- MsmqHostedTransportManager.cs
- UndoManager.cs
- RegistrationServices.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- TextParagraph.cs
- ToolStripItemDesigner.cs
- EventProxy.cs
- LassoHelper.cs
- SourceChangedEventArgs.cs
- EmbeddedMailObject.cs
- XmlRawWriterWrapper.cs
- CultureTable.cs
- HTMLTextWriter.cs
- SvcMapFileSerializer.cs
- BrowserCapabilitiesFactory.cs
- OneOfScalarConst.cs
- DynamicMethod.cs
- Model3DCollection.cs
- Container.cs
- StylusPointCollection.cs
- ElementUtil.cs