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;
///
/// Implements HotSpot for rectangle regions.
///
[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.
//------------------------------------------------------------------------------
//
// 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;
///
/// Implements HotSpot for rectangle regions.
///
[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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConversionContext.cs
- DocumentEventArgs.cs
- MetadataUtilsSmi.cs
- Stream.cs
- ConfigurationValidatorBase.cs
- ErrorLog.cs
- MetafileHeader.cs
- EntityDataSourceViewSchema.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- Pen.cs
- PageParser.cs
- RuntimeConfig.cs
- BasicBrowserDialog.cs
- CheckBoxFlatAdapter.cs
- SafeNativeMethods.cs
- MemoryResponseElement.cs
- StringSource.cs
- ProxyGenerator.cs
- BindingOperations.cs
- SByte.cs
- XmlIlTypeHelper.cs
- RSAPKCS1SignatureFormatter.cs
- BaseTreeIterator.cs
- QilTernary.cs
- CrossAppDomainChannel.cs
- DateTimePickerDesigner.cs
- TextParagraph.cs
- SQLDecimalStorage.cs
- WriterOutput.cs
- SoapObjectReader.cs
- MSHTMLHost.cs
- QuestionEventArgs.cs
- SetStoryboardSpeedRatio.cs
- ColorPalette.cs
- DrawingState.cs
- CommandLibraryHelper.cs
- CapabilitiesPattern.cs
- DesignConnectionCollection.cs
- Model3DCollection.cs
- PointAnimation.cs
- AdornerDecorator.cs
- TextTrailingCharacterEllipsis.cs
- FileRecordSequence.cs
- LinkAreaEditor.cs
- Tool.cs
- _CommandStream.cs
- DataGridViewCellConverter.cs
- ConnectionManagementElementCollection.cs
- MobileTemplatedControlDesigner.cs
- PowerStatus.cs
- CodeBinaryOperatorExpression.cs
- Action.cs
- PackageDigitalSignature.cs
- ProfilePropertyNameValidator.cs
- LoadWorkflowByKeyAsyncResult.cs
- TemplatedAdorner.cs
- HandledMouseEvent.cs
- Interlocked.cs
- ExpressionCopier.cs
- PagerSettings.cs
- MultiAsyncResult.cs
- AffineTransform3D.cs
- ApplicationSettingsBase.cs
- PeerCustomResolverSettings.cs
- DynamicPropertyReader.cs
- Identity.cs
- SerializationEventsCache.cs
- GlyphRunDrawing.cs
- EntityContainer.cs
- TileBrush.cs
- DbProviderFactories.cs
- AlternateView.cs
- SendActivityDesignerTheme.cs
- BasicHttpMessageSecurityElement.cs
- ActivitySurrogate.cs
- ImportCatalogPart.cs
- Tablet.cs
- RootBrowserWindowProxy.cs
- SqlReorderer.cs
- EdmPropertyAttribute.cs
- ObjectPersistData.cs
- CategoryGridEntry.cs
- ButtonBaseDesigner.cs
- SpellerInterop.cs
- StrongNameMembershipCondition.cs
- ThemeInfoAttribute.cs
- RunWorkerCompletedEventArgs.cs
- Task.cs
- SpecularMaterial.cs
- AssemblyBuilder.cs
- ColumnResizeAdorner.cs
- FontStyle.cs
- LabelDesigner.cs
- AttachedPropertyMethodSelector.cs
- RelationshipManager.cs
- TemplatedMailWebEventProvider.cs
- ReaderOutput.cs
- ResourcesChangeInfo.cs
- XmlDocument.cs
- MetadataCacheItem.cs