blob: ad2a91e0b25c6e61e2b57b1498fd57beaa2a333a (
plain)
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
|
using System.Collections.Generic;
using DHTMLX.Export.PDF.Scheduler;
using System.Xml;
namespace DHTMLX.Export.PDF
{
public class PDFPage
{
public List<SchedulerEvent> Multiday { get; set; }
public List<SchedulerEvent> Events { get; set; }
public PDFPage()
{
Multiday = new List<SchedulerEvent>();
Events = new List<SchedulerEvent>();
}
public ColorProfile Profile { get; set; }
public bool Header { get; set; }
public bool Footer { get; set; }
public string Mode { get; set; }
public string TodayLabel { get; set; }
public XmlNode Node { get; set; }
public string[][] Cols { get; set; }
public string[,] Rows { get; set; }
public List<MonthRow> RowObs { get; set; }
}
}
|