Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartMovingEventArgs.cs / 1 / WebPartMovingEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class WebPartMovingEventArgs : WebPartCancelEventArgs { private WebPartZoneBase _zone; private int _zoneIndex; public WebPartMovingEventArgs(WebPart webPart, WebPartZoneBase zone, int zoneIndex) : base(webPart) { _zone = zone; _zoneIndex = zoneIndex; } public WebPartZoneBase Zone { get { return _zone; } set { _zone = value; } } public int ZoneIndex { get { return _zoneIndex; } set { _zoneIndex = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DoubleKeyFrameCollection.cs
- Fault.cs
- Memoizer.cs
- _AutoWebProxyScriptEngine.cs
- InstancePersistence.cs
- ParameterElement.cs
- Formatter.cs
- AdornerDecorator.cs
- basemetadatamappingvisitor.cs
- ResourceContainer.cs
- ColumnResizeUndoUnit.cs
- SqlBuilder.cs
- SocketManager.cs
- XmlSchemaComplexType.cs
- ResXResourceWriter.cs
- SymbolPair.cs
- NetTcpSectionData.cs
- _StreamFramer.cs
- DependencyPropertyDescriptor.cs
- Decimal.cs
- AmbientProperties.cs
- ListControl.cs
- ScalarOps.cs
- TextElementCollection.cs
- DesignerActionHeaderItem.cs
- LinqDataSourceStatusEventArgs.cs
- CodeExporter.cs
- ReferencedCollectionType.cs
- SafeArrayTypeMismatchException.cs
- LinkedList.cs
- Dump.cs
- SubstitutionDesigner.cs
- OLEDB_Util.cs
- DropSource.cs
- NotSupportedException.cs
- NameValueCollection.cs
- ServiceConfigurationTraceRecord.cs
- ExpandCollapsePattern.cs
- ResXResourceWriter.cs
- InputDevice.cs
- TypeReference.cs
- SpellerHighlightLayer.cs
- VariableBinder.cs
- LinkLabel.cs
- DataSourceCache.cs
- CompensationDesigner.cs
- HijriCalendar.cs
- ScrollBarRenderer.cs
- ContextInformation.cs
- ReflectEventDescriptor.cs
- AddDataControlFieldDialog.cs
- ArithmeticException.cs
- DataGridViewBindingCompleteEventArgs.cs
- HostedBindingBehavior.cs
- HttpListenerElement.cs
- SafeRegistryKey.cs
- XmlNamespaceDeclarationsAttribute.cs
- DesignSurface.cs
- TextPattern.cs
- ProfilePropertyNameValidator.cs
- SecurityException.cs
- LineServices.cs
- XomlCompilerError.cs
- ResourceDisplayNameAttribute.cs
- MenuDesigner.cs
- InternalConfigSettingsFactory.cs
- MatrixTransform3D.cs
- PermissionSet.cs
- ModuleElement.cs
- DefaultTextStore.cs
- EmptyImpersonationContext.cs
- DispatcherHookEventArgs.cs
- ErrorsHelper.cs
- FormViewRow.cs
- DefaultValueConverter.cs
- BitmapFrame.cs
- MethodMessage.cs
- Material.cs
- DbProviderServices.cs
- OpenFileDialog.cs
- XmlNamespaceManager.cs
- SystemParameters.cs
- SurrogateEncoder.cs
- ChtmlPageAdapter.cs
- MailWriter.cs
- NativeCompoundFileAPIs.cs
- OutputCacheSection.cs
- CollectionViewGroupInternal.cs
- HtmlInputButton.cs
- LocalizedNameDescriptionPair.cs
- OleDbReferenceCollection.cs
- SerializationEventsCache.cs
- SystemInfo.cs
- SafeLibraryHandle.cs
- ListItemCollection.cs
- HttpConfigurationSystem.cs
- EventLogException.cs
- KeyNotFoundException.cs
- ComPlusServiceLoader.cs
- RenderingEventArgs.cs