Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewModeEventArgs.cs / 1 / DetailsViewModeEventArgs.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 DetailsViewModeEventArgs : CancelEventArgs { private DetailsViewMode _mode; private bool _cancelingEdit; ///Provides data for the ///event. /// public DetailsViewModeEventArgs(DetailsViewMode mode, bool cancelingEdit) : base(false) { this._mode = mode; this._cancelingEdit = cancelingEdit; } ///Initializes a new instance of ///class. /// public bool CancelingEdit { get { return _cancelingEdit; } } ///Gets a bool in the ///indicating whether the mode change is the result of a cancel command. /// This property is read-only. /// public DetailsViewMode NewMode { get { return _mode; } set { _mode = value; } } } }Gets a DetailsViewMode in the ///. This property is read-only.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlKeywords.cs
- OutputCacheProfileCollection.cs
- PartitionerStatic.cs
- ConfigViewGenerator.cs
- TableDetailsRow.cs
- WebPartMenu.cs
- LayoutManager.cs
- AstTree.cs
- Automation.cs
- SqlUDTStorage.cs
- XMLUtil.cs
- SqlDataSource.cs
- QilDataSource.cs
- safex509handles.cs
- ReflectionPermission.cs
- DbConnectionFactory.cs
- SessionStateUtil.cs
- CodeActivity.cs
- EntitySetBaseCollection.cs
- MailSettingsSection.cs
- BufferModeSettings.cs
- DrawListViewItemEventArgs.cs
- XappLauncher.cs
- MatrixKeyFrameCollection.cs
- Win32SafeHandles.cs
- FileDialogCustomPlace.cs
- TreeView.cs
- PnrpPeerResolver.cs
- KnownTypeDataContractResolver.cs
- FileDialog.cs
- CacheModeConverter.cs
- CodeCatchClauseCollection.cs
- TextFindEngine.cs
- InvalidProgramException.cs
- XmlSchemaAppInfo.cs
- EditorPartCollection.cs
- Msec.cs
- BrowserCapabilitiesFactoryBase.cs
- XamlParser.cs
- FontFamilyConverter.cs
- FormViewUpdatedEventArgs.cs
- XamlDebuggerXmlReader.cs
- ServicesUtilities.cs
- WindowsBrush.cs
- ResourceLoader.cs
- SafeUserTokenHandle.cs
- WorkflowInstanceContextProvider.cs
- TextRunTypographyProperties.cs
- WindowInteropHelper.cs
- StrongNameSignatureInformation.cs
- GenericUriParser.cs
- SimpleBitVector32.cs
- AddInSegmentDirectoryNotFoundException.cs
- ComponentResourceManager.cs
- BaseValidatorDesigner.cs
- SqlProfileProvider.cs
- FrameworkContentElement.cs
- ComponentDispatcherThread.cs
- Light.cs
- DataStorage.cs
- PersistenceContextEnlistment.cs
- SqlIdentifier.cs
- Rectangle.cs
- CompiledIdentityConstraint.cs
- Themes.cs
- login.cs
- newinstructionaction.cs
- ListView.cs
- SQLInt64Storage.cs
- CustomAttribute.cs
- CryptoConfig.cs
- AppliesToBehaviorDecisionTable.cs
- ThousandthOfEmRealDoubles.cs
- ItemsChangedEventArgs.cs
- MDIClient.cs
- ConfigurationStrings.cs
- FormsAuthenticationUser.cs
- DesignerTransaction.cs
- TdsParameterSetter.cs
- XPathNodeIterator.cs
- DataGridViewColumnConverter.cs
- ActionItem.cs
- ShutDownListener.cs
- DeviceContext.cs
- SelectiveScrollingGrid.cs
- ElementUtil.cs
- Brushes.cs
- ToolStripSeparatorRenderEventArgs.cs
- MatrixAnimationUsingPath.cs
- AttachedAnnotation.cs
- EventLogHandle.cs
- StagingAreaInputItem.cs
- Int32RectConverter.cs
- StagingAreaInputItem.cs
- PageThemeCodeDomTreeGenerator.cs
- OdbcParameterCollection.cs
- AssemblyInfo.cs
- AttachedAnnotationChangedEventArgs.cs
- Camera.cs
- InvalidOperationException.cs