StyleSheetLocation Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.
Specifies the type of location for the style sheet for a mobile control or page. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public enum class StyleSheetLocation
public enum StyleSheetLocation
[System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public enum StyleSheetLocation
type StyleSheetLocation =
[<System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")>]
type StyleSheetLocation =
Public Enum StyleSheetLocation
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
NotSet | 0 | Default value. The location has not yet been determined. |
ApplicationCache | 1 | The style sheet is stored in the Application Cache. |
SessionState | 2 | The style sheet is stored in the current Session state. |
PhysicalFile | 3 | The style sheet is an external physical file, such as MyStylesheet.css. |
Internal | 4 | The style sheet is a set of styles within the current source file (either .aspx or .ascx). |
None | 5 | Not currently used. |
Remarks
The StyleSheetLocation enumeration is used by classes in the System.Web.UI.MobileControls.Adapters.XhtmlAdapters namespace to facilitate creating XHTML markup.