-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
58 lines (48 loc) · 1.71 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using iDiTect.Excel.DataValidation;
using iDiTect.Excel.DataValidation.Contracts;
using iDiTect.Excel.Drawing;
using iDiTect.Excel.Drawing.Chart;
using iDiTect.Excel.Licensing;
using iDiTect.Excel.Sparkline;
using iDiTect.Excel.Style;
using iDiTect.Excel.Table;
using iDiTect.Excel.Table.PivotTable;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace iDiTect.Excel.Demo
{
class Program
{
static void Main(string[] args)
{
//Please repace the trial key from trial-license.txt in download package
//This license registration line need to be at very beginning of our other code
LicenseManager.SetKey("CLBUL-S8CWY-VKDS6-S8N8J-7LU35-GGMYX");
//ChartHelper.AddChart();
//CommentHelper.AddCommentToSheet();
//ConditionalFormattingHelper.AddConditionalFormatting();
CreateAndLoadHelper.CreateNewExcelFile();
//DataValidationHelper.AddIntegerValidation();
//FormulaHelper.AddFormula();
//HyperlinkHelper.AddHyperlinkToSheet();
//ImportHelper.ImportDataFromArray();
//PictureHelper.InsertPictureToSheet();
//PivotTablesHelper.AddPivotTable();
//ProtectAndLockHelper.ProtectExcel();
//RowColumnHelper.RowAndColumn();
//ShapeHelper.AddShapeToSheet();
//SparklineHelper.AddSparkline();
//TableHelper.AddTable();
//VbaHelper.AddVba2();
}
}
}