Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / HotSpotCollection.cs / 1305376 / 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; namespace System.Web.UI.WebControls { ////// [ Editor("System.Web.UI.Design.WebControls.HotSpotCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] 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. //------------------------------------------------------------------------------ //Marks a HotSpot as dirty so that it will record its entire state into view state. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.Drawing.Design; using System.Web.UI; namespace System.Web.UI.WebControls { ////// [ Editor("System.Web.UI.Design.WebControls.HotSpotCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] 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.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
- Row.cs
- XmlFormatExtensionPointAttribute.cs
- QuadraticBezierSegment.cs
- _AcceptOverlappedAsyncResult.cs
- ExpressionParser.cs
- XmlIgnoreAttribute.cs
- XmlAttributeProperties.cs
- GridViewEditEventArgs.cs
- TextServicesManager.cs
- DataColumnPropertyDescriptor.cs
- SettingsBase.cs
- ComponentDispatcherThread.cs
- clipboard.cs
- NumberSubstitution.cs
- MemberHolder.cs
- ManagementObjectSearcher.cs
- DbProviderFactories.cs
- ButtonBase.cs
- SafeCryptContextHandle.cs
- HttpListenerContext.cs
- SessionStateUtil.cs
- PartManifestEntry.cs
- DiagnosticTraceSource.cs
- TransformedBitmap.cs
- ProxySimple.cs
- StatusBarDesigner.cs
- Vector.cs
- ScrollBar.cs
- DataShape.cs
- ListViewUpdateEventArgs.cs
- PageOutputColor.cs
- EntityDataSourceChangedEventArgs.cs
- StrongName.cs
- TextDpi.cs
- DispatcherFrame.cs
- Viewport3DVisual.cs
- WebPartActionVerb.cs
- FillErrorEventArgs.cs
- SlotInfo.cs
- ProfilePropertySettingsCollection.cs
- TypeSchema.cs
- StructuredType.cs
- DesignTimeTemplateParser.cs
- XmlLangPropertyAttribute.cs
- ByteArrayHelperWithString.cs
- Encoder.cs
- TraceHandler.cs
- Atom10FormatterFactory.cs
- TCPListener.cs
- WebPartConnectionsConnectVerb.cs
- WebPartUserCapability.cs
- DelegateSerializationHolder.cs
- TextTreeInsertUndoUnit.cs
- DocumentViewerBaseAutomationPeer.cs
- Vars.cs
- DetailsViewCommandEventArgs.cs
- RuntimeVariableList.cs
- TdsRecordBufferSetter.cs
- TemplateBaseAction.cs
- BitmapSizeOptions.cs
- MethodBuilderInstantiation.cs
- NTAccount.cs
- EmptyQuery.cs
- X509Certificate2Collection.cs
- PocoEntityKeyStrategy.cs
- HttpRequestWrapper.cs
- DataServiceRequest.cs
- ImageInfo.cs
- Mouse.cs
- InputElement.cs
- ExeContext.cs
- ResourcePool.cs
- KeyValuePair.cs
- UserControlBuildProvider.cs
- DrawingVisualDrawingContext.cs
- RangeValueProviderWrapper.cs
- MediaContext.cs
- ThreadPool.cs
- DataSourceHelper.cs
- GroupItem.cs
- ToolStripDropDownItem.cs
- SystemIPInterfaceProperties.cs
- CompiledRegexRunnerFactory.cs
- PointF.cs
- StructuralObject.cs
- LiteralTextParser.cs
- uribuilder.cs
- SettingsBindableAttribute.cs
- TypeSystem.cs
- ClockGroup.cs
- XPathNodePointer.cs
- XmlText.cs
- ElementProxy.cs
- CompressEmulationStream.cs
- CodeMemberEvent.cs
- RawStylusInputReport.cs
- RenderContext.cs
- FontStyleConverter.cs
- DocumentPageView.cs
- RegexGroup.cs