Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewPageEventArgs.cs / 1 / GridViewPageEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } } }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
- SystemResourceKey.cs
- Speller.cs
- PersonalizationProviderCollection.cs
- WebPartMinimizeVerb.cs
- PropertyEmitter.cs
- CounterCreationDataCollection.cs
- AccessedThroughPropertyAttribute.cs
- ApplicationInfo.cs
- TdsParser.cs
- PeerObject.cs
- CodeCommentStatement.cs
- ValueTypeFixupInfo.cs
- InputProcessorProfiles.cs
- MethodRental.cs
- BitmapDecoder.cs
- ListViewCommandEventArgs.cs
- BufferModeSettings.cs
- PolicyUtility.cs
- StringUtil.cs
- DynamicPropertyHolder.cs
- ProtectedConfigurationSection.cs
- TrackingProfile.cs
- WebHttpBindingElement.cs
- MetadataItemEmitter.cs
- ObjectAnimationBase.cs
- HandlerBase.cs
- TimelineGroup.cs
- Freezable.cs
- UInt64.cs
- Exceptions.cs
- DataBindingExpressionBuilder.cs
- Msec.cs
- EventLogTraceListener.cs
- FromRequest.cs
- StorageComplexTypeMapping.cs
- PkcsUtils.cs
- PrintPageEvent.cs
- SpeakProgressEventArgs.cs
- DataBindingHandlerAttribute.cs
- ClickablePoint.cs
- UserControl.cs
- DesignRelation.cs
- HTTPNotFoundHandler.cs
- MultiSelector.cs
- SecurityIdentifierElement.cs
- TextEffectCollection.cs
- TextElementEnumerator.cs
- Icon.cs
- SerTrace.cs
- ModuleBuilderData.cs
- EventBuilder.cs
- TextBoxLine.cs
- DataGridViewRowsRemovedEventArgs.cs
- AutoGeneratedField.cs
- METAHEADER.cs
- DataRecord.cs
- Floater.cs
- COAUTHIDENTITY.cs
- TypeConverterAttribute.cs
- GetParentChain.cs
- MultipleViewPattern.cs
- DBDataPermission.cs
- TogglePattern.cs
- SamlAttribute.cs
- InvokeBinder.cs
- SizeValueSerializer.cs
- EFDataModelProvider.cs
- ResXBuildProvider.cs
- DesignerAutoFormatStyle.cs
- coordinatorscratchpad.cs
- DSACryptoServiceProvider.cs
- UnmanagedBitmapWrapper.cs
- ScriptMethodAttribute.cs
- DataColumnCollection.cs
- ComPersistableTypeElement.cs
- ObjectAnimationUsingKeyFrames.cs
- XmlCharType.cs
- FloatMinMaxAggregationOperator.cs
- SrgsText.cs
- HMACRIPEMD160.cs
- NotImplementedException.cs
- TimeSpanMinutesConverter.cs
- Globals.cs
- RuntimeConfig.cs
- EncodedStreamFactory.cs
- SqlDependencyListener.cs
- ControlCollection.cs
- UndirectedGraph.cs
- MetadataCacheItem.cs
- CodeEventReferenceExpression.cs
- StreamResourceInfo.cs
- AlternateViewCollection.cs
- ThreadAttributes.cs
- HwndSourceParameters.cs
- DateTimeOffsetAdapter.cs
- ProfilePropertySettings.cs
- Graphics.cs
- SQLSingleStorage.cs
- AttributeUsageAttribute.cs
- MessageQueuePermission.cs