blob: d44f55a764b48885cd5a403bd76d2a282d932a63 (
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
28
29
30
31
32
33
34
35
36
37
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Data.WindowsInstaller
{
/// <summary>
/// Specifies if the column should be modularized.
/// </summary>
public enum ColumnModularizeType
{
/// <summary>Column should not be modularized.</summary>
None,
/// <summary>Column should be modularized.</summary>
Column,
/// <summary>When the column is an primary or foreign key to the Icon table it should be modularized special.</summary>
Icon,
/// <summary>When the column is a companion file it should be modularized.</summary>
CompanionFile,
/// <summary>Column is a condition and should be modularized.</summary>
Condition,
/// <summary>Special modularization type for the ControlEvent table's Argument column.</summary>
ControlEventArgument,
/// <summary>Special modularization type for the Control table's Text column.</summary>
ControlText,
/// <summary>Any Properties in the column should be modularized.</summary>
Property,
/// <summary>Semi-colon list of keys, all of which need to be modularized.</summary>
SemicolonDelimited,
}
}
|