Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewPageEventArgs.cs / 1305376 / GridViewPageEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.ComponentModel; ////// public class GridViewPageEventArgs : CancelEventArgs { private int _newPageIndex; ///Provides data for /// the ////// event. /// public GridViewPageEventArgs(int newPageIndex) { this._newPageIndex = newPageIndex; } ///Initializes a new instance of the ///class. /// public int NewPageIndex { get { return _newPageIndex; } set { if (value < 0) { throw new ArgumentOutOfRangeException("value"); } _newPageIndex = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets the index of the first new page to be displayed in the ///. /// This property is read-only.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsListBox.cs
- PipelineComponent.cs
- sortedlist.cs
- DisableDpiAwarenessAttribute.cs
- ConfigurationSection.cs
- TraceLevelStore.cs
- FullTextLine.cs
- LogicalTreeHelper.cs
- PrePostDescendentsWalker.cs
- BamlLocalizableResourceKey.cs
- ToolStripPanelSelectionGlyph.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- BitmapEffectGroup.cs
- ReadOnlyHierarchicalDataSourceView.cs
- PropertyGridView.cs
- X509Certificate.cs
- ValidationRule.cs
- TableProviderWrapper.cs
- ThreadStateException.cs
- TextFormatter.cs
- CompressEmulationStream.cs
- BuildResultCache.cs
- LassoHelper.cs
- ConfigXmlAttribute.cs
- PickBranch.cs
- EventArgs.cs
- HelpPage.cs
- Serializer.cs
- WebPartConnectionsCancelVerb.cs
- DecoderExceptionFallback.cs
- CodeTypeOfExpression.cs
- SqlBooleanMismatchVisitor.cs
- AssociatedControlConverter.cs
- MessageQueueEnumerator.cs
- StackSpiller.cs
- AvtEvent.cs
- GeneralTransform3D.cs
- XmlWrappingWriter.cs
- MarginCollapsingState.cs
- TraceSection.cs
- DataException.cs
- StorageRoot.cs
- AttachedPropertyMethodSelector.cs
- BrowsableAttribute.cs
- ProxyElement.cs
- QualifierSet.cs
- XmlDocumentSurrogate.cs
- XmlSchemaNotation.cs
- AppDomainFactory.cs
- FixedNode.cs
- RsaSecurityTokenAuthenticator.cs
- ZipIOLocalFileDataDescriptor.cs
- XmlSchemaCompilationSettings.cs
- CellLabel.cs
- WebPartVerbCollection.cs
- CommandHelper.cs
- SynchronizationContext.cs
- XmlExtensionFunction.cs
- SchemaImporterExtension.cs
- EncodingInfo.cs
- HandleRef.cs
- String.cs
- IncrementalReadDecoders.cs
- HttpListenerResponse.cs
- XmlSchemaElement.cs
- SrgsElement.cs
- ByteStack.cs
- SafeNativeMethods.cs
- DataSourceControlBuilder.cs
- NotificationContext.cs
- ClientSession.cs
- HttpContextWrapper.cs
- SchemaInfo.cs
- HtmlString.cs
- DbConnectionStringCommon.cs
- EntitySet.cs
- StringResourceManager.cs
- DesignerActionVerbItem.cs
- XamlClipboardData.cs
- LabelInfo.cs
- objectresult_tresulttype.cs
- JsonObjectDataContract.cs
- SpecialNameAttribute.cs
- MSAANativeProvider.cs
- CreateParams.cs
- WebPartManagerDesigner.cs
- securitycriticaldata.cs
- ExtendedProtectionPolicyElement.cs
- DocumentViewerConstants.cs
- DemultiplexingClientMessageFormatter.cs
- KeyFrames.cs
- DPCustomTypeDescriptor.cs
- RubberbandSelector.cs
- SaveFileDialog.cs
- MsmqBindingFilter.cs
- ListViewDataItem.cs
- SizeIndependentAnimationStorage.cs
- XamlBuildTaskServices.cs
- WebSysDefaultValueAttribute.cs
- DiscoveryUtility.cs