示例#1
0
 public void Cascade(StyleBoolValue baseValue)
 {
     if ( !specified )
     {
         this.val=baseValue.val;
         this.specified=baseValue.specified;
     }
 }
示例#2
0
 public void Cascade(StyleBoolValue baseValue)
 {
     if (!specified)
     {
         this.val       = baseValue.val;
         this.specified = baseValue.specified;
     }
 }
示例#3
0
 internal FontDesc(string family, int size, StyleBoolValue bold, StyleBoolValue italic, StyleBoolValue underline)
 {
     this.Family    = family;
     this.Size      = size;
     this.bold      = bold;
     this.italic    = italic;
     this.underline = underline;
 }
示例#4
0
 internal FontDesc(string family, int size, StyleBoolValue bold, StyleBoolValue italic, StyleBoolValue underline)
 {
     this.Family=family;
     this.Size=size;
     this.bold=bold;
     this.italic=italic;
     this.underline=underline;
 }