Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / HotSpotCollection.cs / 1 / HotSpotCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.Drawing.Design; using System.Web.UI; using System.Security.Permissions; namespace System.Web.UI.WebControls { ////// [ Editor("System.Web.UI.Design.WebControls.HotSpotCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class HotSpotCollection : StateManagedCollection { private static readonly Type[] knownTypes = new Type[] { typeof(CircleHotSpot), typeof(RectangleHotSpot), typeof(PolygonHotSpot), }; ///Collection of HotSpots. ////// public HotSpot this[int index] { get { return (HotSpot)((IList)this)[index]; } } ///Returns the HotSpot at a given index. ////// public int Add(HotSpot spot) { return ((IList)this).Add(spot); } ///Adds a HotSpot to the collection. ////// protected override object CreateKnownType(int index) { switch (index) { case 0: return new CircleHotSpot(); case 1: return new RectangleHotSpot(); case 2: return new PolygonHotSpot(); default: throw new ArgumentOutOfRangeException(SR.GetString(SR.HotSpotCollection_InvalidTypeIndex)); } } ///Creates a known type of HotSpot. ////// protected override Type[] GetKnownTypes() { return knownTypes; } ///Returns an ArrayList of known HotSpot types. ////// public void Insert(int index, HotSpot spot) { ((IList)this).Insert(index, spot); } ///Inserts a HotSpot into the collection. ////// protected override void OnValidate(object o) { base.OnValidate(o); if (!(o is HotSpot)) throw new ArgumentException(SR.GetString(SR.HotSpotCollection_InvalidType)); } ///Validates that an object is a HotSpot. ////// public void Remove(HotSpot spot) { ((IList)this).Remove(spot); } ///Removes a HotSpot from the collection. ////// public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } ///Removes a HotSpot from the collection at a given index. ////// protected override void SetDirtyObject(object o) { ((HotSpot)o).SetDirty(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Marks a HotSpot as dirty so that it will record its entire state into view state. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RootAction.cs
- PassportAuthentication.cs
- MemberJoinTreeNode.cs
- SQLBytesStorage.cs
- HierarchicalDataTemplate.cs
- XPathNode.cs
- InvalidPropValue.cs
- Msec.cs
- Vector3DKeyFrameCollection.cs
- HttpCachePolicyElement.cs
- EpmTargetPathSegment.cs
- OdbcTransaction.cs
- ServiceParser.cs
- OperationInvokerTrace.cs
- StaticExtension.cs
- HelpKeywordAttribute.cs
- ObjectDataSourceSelectingEventArgs.cs
- Calendar.cs
- WebEvents.cs
- XmlMemberMapping.cs
- RoutedEventHandlerInfo.cs
- DynamicAttribute.cs
- SafeLocalAllocation.cs
- ZoneIdentityPermission.cs
- ReferencedAssembly.cs
- ACE.cs
- ComponentDispatcherThread.cs
- SynchronizationContext.cs
- PtsPage.cs
- ServerIdentity.cs
- DragDrop.cs
- JoinGraph.cs
- FontSourceCollection.cs
- ClientData.cs
- QuarticEase.cs
- XmlSerializer.cs
- MgmtConfigurationRecord.cs
- ListParagraph.cs
- GridViewSortEventArgs.cs
- AlphabeticalEnumConverter.cs
- DefaultPropertiesToSend.cs
- ArraySet.cs
- DataContractSerializerServiceBehavior.cs
- ServiceInfo.cs
- TripleDES.cs
- HtmlInputReset.cs
- StringDictionary.cs
- RowToParametersTransformer.cs
- SerializationInfoEnumerator.cs
- OleTxTransactionInfo.cs
- Setter.cs
- Model3D.cs
- FieldBuilder.cs
- AnnotationDocumentPaginator.cs
- ListViewInsertedEventArgs.cs
- StylusButtonEventArgs.cs
- MetadataArtifactLoaderCompositeResource.cs
- CustomErrorCollection.cs
- LinqTreeNodeEvaluator.cs
- EmptyStringExpandableObjectConverter.cs
- QilIterator.cs
- XmlObjectSerializer.cs
- Viewport3DAutomationPeer.cs
- CounterCreationData.cs
- ToolboxItemAttribute.cs
- UInt32Converter.cs
- AssemblyHash.cs
- BmpBitmapEncoder.cs
- ScrollData.cs
- ReadOnlyActivityGlyph.cs
- SHA384.cs
- ServicePoint.cs
- WebPartConnectionsCancelVerb.cs
- OdbcDataAdapter.cs
- SplitContainer.cs
- Lease.cs
- SafeHandle.cs
- ActivityXamlServices.cs
- TextViewBase.cs
- CompositeActivityTypeDescriptor.cs
- ExecutedRoutedEventArgs.cs
- AutomationElement.cs
- RepeaterCommandEventArgs.cs
- RequestQueryProcessor.cs
- UserControlAutomationPeer.cs
- TaiwanCalendar.cs
- CollaborationHelperFunctions.cs
- XmlLanguageConverter.cs
- FormsAuthenticationUser.cs
- FormViewCommandEventArgs.cs
- SapiInterop.cs
- JoinQueryOperator.cs
- MediaPlayerState.cs
- DynamicRenderer.cs
- BitmapImage.cs
- MobileRedirect.cs
- SerialPinChanges.cs
- MissingMemberException.cs
- DES.cs
- SqlDataSourceStatusEventArgs.cs