Smrf.NodeXL.ExcelTemplate.AutomateTasksDialog.PopulateTasksToRun C# (CSharp) Method

PopulateTasksToRun() protected method

protected PopulateTasksToRun ( ) : void
return void
    PopulateTasksToRun()
    {
        // AssertValid();

        clbTasksToRun.PopulateWithObjectsAndText(

            AutomationTasks.MergeDuplicateEdges, 
            "Count and merge duplicate edges",

            AutomationTasks.CalculateClusters, 
            "Group by cluster",

            AutomationTasks.CalculateGraphMetrics, 
            "Graph metrics",

            AutomationTasks.AutoFillWorkbook, 
            "Autofill columns",

            AutomationTasks.CreateSubgraphImages, 
            "Subgraph images",

            AutomationTasks.ReadWorkbook, 
            "Show graph",

            AutomationTasks.SaveWorkbookIfNeverSaved, 
            "Save workbook to a new file if it has never been saved",

            AutomationTasks.SaveGraphImageFile, 
            "Save image to file",

            AutomationTasks.ExportToNodeXLGraphGallery, 
            "Export graph to NodeXL Graph Gallery",

            AutomationTasks.ExportToEmail, 
            "Export graph to email"
            );
    }