Class CPDocBaseClass.HtmlAssetClass
- Namespace
- Contensive.BaseClasses
- Assembly
- CPBase.dll
assets to be added to the head section (and end-of-body) of html documents
public class CPDocBaseClass.HtmlAssetClass
- Inheritance
-
CPDocBaseClass.HtmlAssetClass
- Inherited Members
Properties
addedByMessage
message used during debug to show where the asset came from
public string addedByMessage { get; set; }
Property Value
assetType
the type of asset, css, js, etc
public CPDocBaseClass.HtmlAssetTypeEnum assetType { get; set; }
Property Value
canBeMerged
If true, this asset can can be merged with other similar documents
public bool canBeMerged { get; set; }
Property Value
content
either link or content depending on the isLink property
public string content { get; set; }
Property Value
inHead
if true, asset goes in head else it goes at end of body
public bool inHead { get; set; }
Property Value
isLink
if true, the content property is a link to the asset, else use the content as the asset
public bool isLink { get; set; }
Property Value
sourceAddonId
if this asset was added from an addon, this is the addonId.
public int sourceAddonId { get; set; }