Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / RectangleHotSpot.cs / 1 / RectangleHotSpot.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Globalization; using System.Web.UI; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class RectangleHotSpot : HotSpot { [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Bottom), ] public int Bottom { get { object o = ViewState["Bottom"]; return o != null? (int)o : 0; } set { ViewState["Bottom"] = value; } } [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Left), ] public int Left { get { object o = ViewState["Left"]; return o != null? (int)o : 0; } set { ViewState["Left"] = value; } } [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Right), ] public int Right { get { object o = ViewState["Right"]; return o != null? (int)o : 0; } set { ViewState["Right"] = value; } } [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Top), ] public int Top { get { object o = ViewState["Top"]; return o != null? (int)o : 0; } set { ViewState["Top"] = value; } } protected internal override string MarkupName { get { return "rect"; } } public override string GetCoordinates() { return Left + "," + Top + "," + Right + "," + Bottom; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Implements HotSpot for rectangle regions. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Globalization; using System.Web.UI; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class RectangleHotSpot : HotSpot { [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Bottom), ] public int Bottom { get { object o = ViewState["Bottom"]; return o != null? (int)o : 0; } set { ViewState["Bottom"] = value; } } [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Left), ] public int Left { get { object o = ViewState["Left"]; return o != null? (int)o : 0; } set { ViewState["Left"] = value; } } [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Right), ] public int Right { get { object o = ViewState["Right"]; return o != null? (int)o : 0; } set { ViewState["Right"] = value; } } [ WebCategory("Appearance"), DefaultValue(0), WebSysDescription(SR.RectangleHotSpot_Top), ] public int Top { get { object o = ViewState["Top"]; return o != null? (int)o : 0; } set { ViewState["Top"] = value; } } protected internal override string MarkupName { get { return "rect"; } } public override string GetCoordinates() { return Left + "," + Top + "," + Right + "," + Bottom; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Implements HotSpot for rectangle regions. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DateRangeEvent.cs
- Geometry3D.cs
- ChtmlCommandAdapter.cs
- Helpers.cs
- CharacterHit.cs
- DataGridViewEditingControlShowingEventArgs.cs
- FixedPageProcessor.cs
- MainMenu.cs
- DataDesignUtil.cs
- DataGridViewComboBoxEditingControl.cs
- BypassElement.cs
- Formatter.cs
- DecimalFormatter.cs
- DataGridAutoFormatDialog.cs
- updatecommandorderer.cs
- RegexInterpreter.cs
- FormattedText.cs
- Binding.cs
- ToolStripSplitButton.cs
- GridEntryCollection.cs
- UnknownBitmapDecoder.cs
- MruCache.cs
- PropertyGeneratedEventArgs.cs
- MimeWriter.cs
- PageAdapter.cs
- NativeCompoundFileAPIs.cs
- BindingNavigator.cs
- StdValidatorsAndConverters.cs
- baseaxisquery.cs
- Validator.cs
- ColorAnimation.cs
- DeclarationUpdate.cs
- Point4DValueSerializer.cs
- Parsers.cs
- WindowExtensionMethods.cs
- InputScopeAttribute.cs
- XmlStreamNodeWriter.cs
- CheckedPointers.cs
- HtmlProps.cs
- AttributeQuery.cs
- TextBox.cs
- TdsParserSafeHandles.cs
- HMACMD5.cs
- LoginUtil.cs
- AvtEvent.cs
- AmbientLight.cs
- DefinitionUpdate.cs
- SectionXmlInfo.cs
- XmlMtomWriter.cs
- TextStore.cs
- XpsFilter.cs
- ToolboxComponentsCreatedEventArgs.cs
- SqlNotificationEventArgs.cs
- ExpressionBuilder.cs
- ComponentResourceKeyConverter.cs
- ObjectHandle.cs
- RuntimeCompatibilityAttribute.cs
- DetailsViewDeleteEventArgs.cs
- MetadataItemSerializer.cs
- ByteConverter.cs
- URLAttribute.cs
- MultiDataTrigger.cs
- GenericsInstances.cs
- AmbientLight.cs
- IDReferencePropertyAttribute.cs
- HintTextConverter.cs
- OptimalTextSource.cs
- Component.cs
- ProxyWebPart.cs
- PanelDesigner.cs
- TableParagraph.cs
- KeyValueConfigurationElement.cs
- SQLBinary.cs
- StackOverflowException.cs
- WebPartUserCapability.cs
- GraphicsContext.cs
- NavigationPropertyAccessor.cs
- RightsManagementEncryptionTransform.cs
- figurelengthconverter.cs
- QueryLifecycle.cs
- sqlstateclientmanager.cs
- TraceUtility.cs
- AssertFilter.cs
- HashSetEqualityComparer.cs
- RuntimeWrappedException.cs
- VisualTreeUtils.cs
- AppDomainFactory.cs
- SqlUtils.cs
- MonitoringDescriptionAttribute.cs
- ScriptComponentDescriptor.cs
- Base64Stream.cs
- DynamicActionMessageFilter.cs
- ItemsPresenter.cs
- InkCanvasAutomationPeer.cs
- OrderByQueryOptionExpression.cs
- Exceptions.cs
- SectionInformation.cs
- NetDataContractSerializer.cs
- DataBoundControlHelper.cs
- CompressStream.cs