Table of Contents

Class GoogleFont

Namespace
Dynamicweb.Content.Items.Editors
Assembly
Dynamicweb.dll

Represents a Google font item.

public class GoogleFont
Inheritance
GoogleFont
Inherited Members

Properties

Family

Gets or sets the name of the family.

public string Family { get; set; }

Property Value

string

Files

Gets or sets the font family files (with all supported scripts) for each one of the available variants.

public IDictionary<string, string> Files { get; set; }

Property Value

IDictionary<string, string>

Remarks

Key - the variant name from the Variants list. Value - the path to the font file.

LastModified

Gets or sets the date the font family was modified for the last time.

public DateTime LastModified { get; set; }

Property Value

DateTime

SelectedVariant

Gets or sets the selected font variant.

public string SelectedVariant { get; set; }

Property Value

string

SubSets

Gets or sets a list of scripts supported by the family.

public IEnumerable<string> SubSets { get; set; }

Property Value

IEnumerable<string>

Variants

Gets or sets the different styles available for the family.

public IEnumerable<string> Variants { get; set; }

Property Value

IEnumerable<string>

Version

Gets or sets the font family version.

public string Version { get; set; }

Property Value

string
To top