Example #1
0
 public void ReplaceMouseoverTextColorAt(Type_RGBColor newValue, int index)
 {
     ReplaceDomElementAt("", "MouseoverTextColor", index, newValue);
 }
Example #2
0
 public XmlNode AddMouseoverTextColor(Type_RGBColor newValue)
 {
     return AppendDomElement("", "MouseoverTextColor", newValue);
 }
Example #3
0
 public void InsertMouseoverTextColorAt(Type_RGBColor newValue, int index)
 {
     InsertDomElementAt("", "MouseoverTextColor", index, newValue);
 }
Example #4
0
 public void InsertTransparentColorAt(Type_RGBColor newValue, int index)
 {
     InsertDomElementAt("", "TransparentColor", index, newValue);
 }
Example #5
0
 public void ReplaceTransparentColorAt(Type_RGBColor newValue, int index)
 {
     ReplaceDomElementAt("", "TransparentColor", index, newValue);
 }
Example #6
0
 public XmlNode AddTransparentColor(Type_RGBColor newValue)
 {
     return AppendDomElement("", "TransparentColor", newValue);
 }
Example #7
0
 public XmlNode AddRGBColor(Type_RGBColor newValue)
 {
     return AppendDomElement("", "RGBColor", newValue);
 }
Example #8
0
 public BlueEnumerator(Type_RGBColor par)
 {
     parent = par;
     nIndex = -1;
 }
Example #9
0
 public GreenEnumerator(Type_RGBColor par)
 {
     parent = par;
     nIndex = -1;
 }
Example #10
0
 public RedEnumerator(Type_RGBColor par)
 {
     parent = par;
     nIndex = -1;
 }