public ActionEntry Copy() { ActionEntry e = new ActionEntry(); e.pluginName = pluginName; e.actionParam = actionParam; return e; }
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; }
public HilightEntry(string searchText, Color fgColor, Color bgColor, bool isRegEx, bool isCaseSensitive, bool isLedSwitch, bool isStopTail, bool isSetBookmark, bool isActionEntry, ActionEntry actionEntry, bool isWordMatch) { SearchText = searchText; ForegroundColor = fgColor; BackgroundColor = bgColor; IsRegEx = isRegEx; IsCaseSensitive = isCaseSensitive; IsLedSwitch = isLedSwitch; IsStopTail = isStopTail; IsSetBookmark = isSetBookmark; IsActionEntry = isActionEntry; ActionEntry = actionEntry; IsWordMatch = isWordMatch; }
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; }