Click or drag to resize

EncounterDataExportStringDataCallback Delegate

A signature used to accept a EncounterData object and return a string of data based on what the TextExportFormatter represents

Namespace:  Advanced_Combat_Tracker
Assembly:  Advanced Combat Tracker (in Advanced Combat Tracker.exe) Version: 3.7.0.280
Syntax
C#
public delegate string ExportStringDataCallback(
	EncounterData Data,
	List<CombatantData> SelectiveAllies,
	string ExtraFormat
)

Parameters

Data
Type: Advanced_Combat_TrackerEncounterData
The EncounterData object to retrieve data from
SelectiveAllies
Type: System.Collections.GenericListCombatantData
A collection of CombatantData objects that data totals should be taken from (includes SelectiveParsing filtering)
ExtraFormat
Type: SystemString
A string that is extracted after a colon to specialize the output

Return Value

Type: String
The string that contains the data the TextExportFormatter represents for the EncounterData object
See Also