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
- CheckBoxList.cs
- SystemIPAddressInformation.cs
- AssociationSetMetadata.cs
- UriWriter.cs
- HttpContext.cs
- BooleanAnimationBase.cs
- LateBoundBitmapDecoder.cs
- BuildDependencySet.cs
- BrowserCapabilitiesFactoryBase.cs
- MergeFailedEvent.cs
- BamlMapTable.cs
- DataGridRow.cs
- Internal.cs
- DataContractSerializerOperationGenerator.cs
- ObjectManager.cs
- CodeTypeReferenceCollection.cs
- RuntimeResourceSet.cs
- Utilities.cs
- BrowserCapabilitiesFactoryBase.cs
- FormsIdentity.cs
- AvTraceDetails.cs
- MiniParameterInfo.cs
- RemoteWebConfigurationHostServer.cs
- TranslateTransform3D.cs
- XmlSerializerAssemblyAttribute.cs
- TokenBasedSetEnumerator.cs
- OdbcConnectionStringbuilder.cs
- SQLBinary.cs
- DataGridItemCollection.cs
- HtmlImage.cs
- ScrollItemProviderWrapper.cs
- GregorianCalendarHelper.cs
- FileFormatException.cs
- ObjectMaterializedEventArgs.cs
- BitStack.cs
- StrongNameUtility.cs
- EncryptedPackage.cs
- SessionEndingCancelEventArgs.cs
- ButtonFieldBase.cs
- PrtTicket_Public.cs
- TraceSwitch.cs
- AlignmentYValidation.cs
- WpfGeneratedKnownTypes.cs
- RSAPKCS1SignatureFormatter.cs
- QilGenerator.cs
- RoleGroupCollection.cs
- Style.cs
- Parser.cs
- StructuredTypeEmitter.cs
- _HeaderInfoTable.cs
- XmlWellformedWriterHelpers.cs
- MouseGesture.cs
- EdmRelationshipRoleAttribute.cs
- WindowsFormsHelpers.cs
- DesignTableCollection.cs
- HttpStreamMessage.cs
- SystemColors.cs
- ContainsRowNumberChecker.cs
- RestClientProxyHandler.cs
- XmlQueryRuntime.cs
- EndOfStreamException.cs
- WmfPlaceableFileHeader.cs
- WebPartConnectionsConfigureVerb.cs
- DataTableNewRowEvent.cs
- ItemCheckedEvent.cs
- Stroke.cs
- COAUTHIDENTITY.cs
- XmlBinaryReader.cs
- OleDbReferenceCollection.cs
- MapPathBasedVirtualPathProvider.cs
- UntypedNullExpression.cs
- SignatureDescription.cs
- Serializer.cs
- PrintDialogException.cs
- AspNetHostingPermission.cs
- DatasetMethodGenerator.cs
- TransformerTypeCollection.cs
- FrameSecurityDescriptor.cs
- SpStreamWrapper.cs
- base64Transforms.cs
- BooleanAnimationUsingKeyFrames.cs
- Font.cs
- RepeaterDataBoundAdapter.cs
- SelectiveScrollingGrid.cs
- DateBoldEvent.cs
- Soap.cs
- BaseCAMarshaler.cs
- DataGridItemEventArgs.cs
- PrtCap_Base.cs
- AppDomain.cs
- AnnotationAdorner.cs
- GroupDescription.cs
- xsdvalidator.cs
- XmlQueryTypeFactory.cs
- FormDesigner.cs
- SpellerStatusTable.cs
- TableColumn.cs
- _ScatterGatherBuffers.cs
- NamespaceEmitter.cs
- _Events.cs