示例#1
0
 public HilightEntry(string searchText, Color fgColor, Color bgColor, bool isWordMatch)
 {
     this.searchText      = searchText;
     this.fgColor         = fgColor;
     this.bgColor         = bgColor;
     this.isRegEx         = false;
     this.isCaseSensitive = false;
     this.isLedSwitch     = false;
     this.isStopTail      = false;
     this.isSetBookmark   = false;
     this.isActionEntry   = false;
     this.actionEntry     = null;
     this.IsWordMatch     = isWordMatch;
 }
示例#2
0
 public HilightEntry(string searchText, Color fgColor, Color bgColor,
                     bool isRegEx, bool isCaseSensitive, bool isLedSwitch,
                     bool isStopTail, bool isSetBookmark, bool isActionEntry, ActionEntry actionEntry, bool isWordMatch)
 {
     this.searchText      = searchText;
     this.fgColor         = fgColor;
     this.bgColor         = bgColor;
     this.isRegEx         = isRegEx;
     this.isCaseSensitive = isCaseSensitive;
     this.isLedSwitch     = isLedSwitch;
     this.isStopTail      = isStopTail;
     this.isSetBookmark   = isSetBookmark;
     this.isActionEntry   = isActionEntry;
     this.actionEntry     = actionEntry;
     this.IsWordMatch     = isWordMatch;
 }