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
- ComponentSerializationService.cs
- FontStyleConverter.cs
- TreeViewImageIndexConverter.cs
- GlyphRunDrawing.cs
- CalloutQueueItem.cs
- LedgerEntryCollection.cs
- RSAProtectedConfigurationProvider.cs
- FixedSOMTableRow.cs
- XsdDateTime.cs
- JsonQueryStringConverter.cs
- ActionFrame.cs
- DetailsViewDesigner.cs
- SafeMILHandle.cs
- WebPartAddingEventArgs.cs
- ImageBrush.cs
- BridgeDataReader.cs
- ProtocolsConfiguration.cs
- XmlElementList.cs
- TypeGeneratedEventArgs.cs
- TextRange.cs
- SerializableTypeCodeDomSerializer.cs
- IisTraceListener.cs
- _DigestClient.cs
- EventProviderBase.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SecurityPolicySection.cs
- counter.cs
- EventMappingSettingsCollection.cs
- BamlBinaryReader.cs
- TagMapInfo.cs
- DynamicDataManager.cs
- CharacterMetricsDictionary.cs
- FacetChecker.cs
- MarginCollapsingState.cs
- SoapParser.cs
- MediaElement.cs
- CurrencyManager.cs
- CollectionContainer.cs
- XamlToRtfParser.cs
- CorrelationRequestContext.cs
- ReachVisualSerializerAsync.cs
- Error.cs
- SqlDataRecord.cs
- MTConfigUtil.cs
- TraceLevelHelper.cs
- DaylightTime.cs
- XmlSchema.cs
- HtmlInputImage.cs
- AttributeTable.cs
- SequentialUshortCollection.cs
- SqlTypeConverter.cs
- ExtensibleSyndicationObject.cs
- EncodingInfo.cs
- HyperLinkField.cs
- ScaleTransform.cs
- XmlSchemaInclude.cs
- SortedList.cs
- URLIdentityPermission.cs
- ProviderManager.cs
- NextPreviousPagerField.cs
- EnumConverter.cs
- ArrangedElement.cs
- WebBrowserEvent.cs
- CodeRegionDirective.cs
- Single.cs
- HttpRawResponse.cs
- CustomWebEventKey.cs
- RSAPKCS1SignatureDeformatter.cs
- XmlElementList.cs
- QueryExpr.cs
- HtmlSelectionListAdapter.cs
- DataGridViewElement.cs
- DataGridViewCellLinkedList.cs
- SettingsPropertyCollection.cs
- DataKey.cs
- ExtendedPropertyCollection.cs
- Separator.cs
- SettingsPropertyNotFoundException.cs
- ResourcesChangeInfo.cs
- HMACRIPEMD160.cs
- XmlElement.cs
- SelectionBorderGlyph.cs
- SourceSwitch.cs
- _HelperAsyncResults.cs
- XMLUtil.cs
- XsltLoader.cs
- ApplicationServiceHelper.cs
- OdbcEnvironment.cs
- RequestResizeEvent.cs
- XmlQuerySequence.cs
- HtmlEncodedRawTextWriter.cs
- NonceToken.cs
- SafeNativeMethods.cs
- CodeIdentifier.cs
- FunctionNode.cs
- AnimationLayer.cs
- LicenseProviderAttribute.cs
- Invariant.cs
- SHA1Cng.cs
- RuntimeArgument.cs