-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathCheckBoxSample.cs
More file actions
64 lines (47 loc) · 1.83 KB
/
CheckBoxSample.cs
File metadata and controls
64 lines (47 loc) · 1.83 KB
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
59
60
61
62
63
64
/***************************************************************************************
Xceed Words for .NET – Xceed.Words.NET.Examples – Section Sample Application
Copyright (c) 2009-2021 - Xceed Software Inc.
This application demonstrates how to insert sections when using the API
from the Xceed Words for .NET.
This file is part of Xceed Words for .NET. The source code in this file
is only intended as a supplement to the documentation, and is provided
"as is", without warranty of any kind, either expressed or implied.
*************************************************************************************/
using System;
using System.IO;
using System.Linq;
namespace Xceed.Words.NET.Examples
{
public class CheckBoxSample
{
#region Private Members
private static string CheckBoxSampleResourcesDirectory = Program.SampleDirectory + @"CheckBox\Resources\";
private static string CheckBoxSampleOutputDirectory = Program.SampleDirectory + @"CheckBox\Output\";
#endregion
#region Constructors
static CheckBoxSample()
{
if( !Directory.Exists( CheckBoxSample.CheckBoxSampleOutputDirectory ) )
{
Directory.CreateDirectory( CheckBoxSample.CheckBoxSampleOutputDirectory );
}
}
#endregion
#region Public Methods
/// <summary>
/// Modify a checkbox in a document.
/// </summary>
public static void ModifyCheckBox()
{
// This option is available when you buy Xceed Words for .NET from https://xceed.com/xceed-words-for-net/.
}
/// <summary>
/// Add a checkbox in a document.
/// </summary>
public static void AddCheckBox()
{
// This option is available when you buy Xceed Words for .NET from https://xceed.com/xceed-words-for-net/.
}
#endregion
}
}