Click or drag to resize

LogLineEventArgs Class

Class holding a log line and info about it
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Advanced_Combat_TrackerLogLineEventArgs

Namespace:  Advanced_Combat_Tracker
Assembly:  Advanced Combat Tracker (in Advanced Combat Tracker.exe) Version: 3.7.0.280
Syntax
C#
public class LogLineEventArgs : EventArgs

The LogLineEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodLogLineEventArgs(String, Int32, DateTime, String, Boolean)
Class holding a log line and info about it
Public methodLogLineEventArgs(String, Int32, DateTime, String, Boolean, String)
Initializes a new instance of the LogLineEventArgs class
Top
Fields
  NameDescription
Public fieldcompanionLogName
The sub-name of the companion log file. Blank if from the main log file. "Plugin" if a direct call to ParseRawLogLine() was made.
Public fielddetectedTime
Timestamp parsed from the log line
Public fielddetectedType
The detected log line type from the parsing engine. 0 if ACT ignored the log line or is not currently set If you are setting this yourself as a parsing plugin, the value may corrispond to a 32-bit ARGB value to create a color in the ViewLogs window IE, if you want red, set this as System.Drawing.Color.Red.ToArgb();
Public fielddetectedZone
The zone at the time of parsing
Public fieldinCombat
If there is already an encounter active
Public fieldlogLine
The full log line
Public fieldoriginalLogLine
The original log line that was passed to the constructor
Top
See Also