17 lines
324 B
C#
17 lines
324 B
C#
namespace SharepointToolbox.Web.Services.Export;
|
|
|
|
/// <summary>How a report export is partitioned.</summary>
|
|
public enum ReportSplitMode
|
|
{
|
|
Single,
|
|
BySite,
|
|
ByUser
|
|
}
|
|
|
|
/// <summary>When a report is split, how HTML output is laid out.</summary>
|
|
public enum HtmlSplitLayout
|
|
{
|
|
SeparateFiles,
|
|
SingleTabbed
|
|
}
|