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
- FontNamesConverter.cs
- RequiredFieldValidator.cs
- TemplateControlParser.cs
- DataGridViewDataErrorEventArgs.cs
- SqlProviderServices.cs
- ContentElement.cs
- ToolTip.cs
- Focus.cs
- SiteMapDataSourceView.cs
- DynamicScriptObject.cs
- FolderBrowserDialogDesigner.cs
- ArrayTypeMismatchException.cs
- TransformProviderWrapper.cs
- Trace.cs
- SqlRowUpdatingEvent.cs
- XmlEntityReference.cs
- XmlCompatibilityReader.cs
- XmlElementAttributes.cs
- ConstructorExpr.cs
- SqlInternalConnectionSmi.cs
- AudioSignalProblemOccurredEventArgs.cs
- HandleScope.cs
- TextDecorationLocationValidation.cs
- MetadataItemCollectionFactory.cs
- PeerEndPoint.cs
- SourceItem.cs
- TraceUtils.cs
- Context.cs
- InputLanguageManager.cs
- NetworkInformationException.cs
- MessageFilterException.cs
- QuotaThrottle.cs
- PrimitiveXmlSerializers.cs
- DecimalMinMaxAggregationOperator.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- Point3DCollection.cs
- RepeaterItem.cs
- AdornerDecorator.cs
- OdbcException.cs
- ConnectionPoint.cs
- RawKeyboardInputReport.cs
- CodePageUtils.cs
- HierarchicalDataBoundControl.cs
- EffectiveValueEntry.cs
- Baml2006Reader.cs
- SoapExtensionStream.cs
- UniqueIdentifierService.cs
- TargetInvocationException.cs
- LabelDesigner.cs
- DataRowCollection.cs
- Rect3DConverter.cs
- SQLString.cs
- HttpPostedFileBase.cs
- CompilerErrorCollection.cs
- XDRSchema.cs
- RetrieveVirtualItemEventArgs.cs
- SoapAttributeAttribute.cs
- TreeNodeBindingCollection.cs
- AffineTransform3D.cs
- WSMessageEncoding.cs
- Registry.cs
- WebPartDisplayModeEventArgs.cs
- UndoManager.cs
- CompilerHelpers.cs
- Int16AnimationUsingKeyFrames.cs
- UnionCodeGroup.cs
- ConfigurationLockCollection.cs
- COSERVERINFO.cs
- SqlClientMetaDataCollectionNames.cs
- NativeMethods.cs
- PolyBezierSegmentFigureLogic.cs
- MetadataItem.cs
- TreeNodeStyle.cs
- DesignerAdapterUtil.cs
- Variable.cs
- CanonicalFormWriter.cs
- ServiceDiscoveryBehavior.cs
- ComponentGlyph.cs
- DataTableTypeConverter.cs
- HttpListenerPrefixCollection.cs
- MultipleViewPattern.cs
- RemoveStoryboard.cs
- SafeWaitHandle.cs
- BaseCodePageEncoding.cs
- DataGridViewRowPrePaintEventArgs.cs
- SecureStringHasher.cs
- RelationshipEndMember.cs
- XsltCompileContext.cs
- XamlTypeMapper.cs
- Formatter.cs
- MarkupCompilePass2.cs
- XpsFilter.cs
- GroupDescription.cs
- Enum.cs
- WindowsTitleBar.cs
- ProtocolsConfiguration.cs
- ScriptRegistrationManager.cs
- DefaultBindingPropertyAttribute.cs
- PropertyTab.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs