ExportAutomationEventList method

bool ExportAutomationEventList(
  1. AutomationEventListD list,
  2. String fileName
)

Export automation events list as text file

Implementation

bool ExportAutomationEventList(
  AutomationEventListD list,
  String fileName,
) => run(
  () => _debugLabels.ExportAutomationEventList(list, fileName),
  () => _flat.ExportAutomationEventList(
    list,
    $.String$.ValueOrNull(fileName),
  ),
);