Inheritance: ScintillaHelperBase
示例#1
0
 public void CopyTo(Style target)
 {
     target.BackColor = this.BackColor;
     target.Bold = this.Bold;
     target.Case = this.Case;
     target.CharacterSet = this.CharacterSet;
     target.FontName = this.FontName;
     target.ForeColor = this.ForeColor;
     target.IsChangeable = this.IsChangeable;
     target.IsHotspot = this.IsHotspot;
     target.IsSelectionEolFilled = this.IsSelectionEolFilled;
     target.IsVisible = this.IsVisible;
     target.Italic = this.Italic;
     target.Size = this.Size;
     target.Underline = this.Underline;
 }