18 namespace erminas.SmartAPI.CMS.Project.ContentClasses.Elements
22 string FontClass {
get;
set; }
24 string FontColor {
get;
set; }
26 string FontFace {
get;
set; }
28 string FontSize {
get;
set; }
30 bool IsFontBold {
get;
set; }
33 internal class TextAnchor : Anchor, ITextAnchor
35 internal TextAnchor(
IContentClass contentClass, XmlElement xmlElement) : base(contentClass, xmlElement)
39 [RedDot(
"eltfontclass")]
40 public string FontClass
42 get {
return GetAttributeValue<string>(); }
43 set { SetAttributeValue(value); }
46 [RedDot(
"eltfontcolor")]
47 public string FontColor
49 get {
return GetAttributeValue<string>(); }
50 set { SetAttributeValue(value); }
53 [RedDot(
"eltfontface")]
54 public string FontFace
56 get {
return GetAttributeValue<string>(); }
57 set { SetAttributeValue(value); }
60 [RedDot(
"eltfontsize")]
61 public string FontSize
63 get {
return GetAttributeValue<string>(); }
64 set { SetAttributeValue(value); }
67 [RedDot(
"eltfontbold")]
68 public bool IsFontBold
70 get {
return GetAttributeValue<bool>(); }
71 set { SetAttributeValue(value); }