43 lines
710 B
C#
43 lines
710 B
C#
namespace Kreta.Enums.ManualEnums
|
|
{
|
|
public enum ColumnTypeEnum
|
|
{
|
|
Text,
|
|
EditText,
|
|
EditTextarea,
|
|
EditTextWithEditor,
|
|
NumericText,
|
|
LinkButton,
|
|
SelectLinkButton,
|
|
Combo,
|
|
CheckBox,
|
|
TextAndCheckBox,
|
|
SelectCheckBox,
|
|
Decimal,
|
|
Selector
|
|
}
|
|
public enum LevelTypeEnum
|
|
{
|
|
First = 1,
|
|
Second = 2,
|
|
Third = 3,
|
|
Fourth = 4,
|
|
Fifth = 5,
|
|
Sixth = 6
|
|
}
|
|
public enum TabDirectionEnum
|
|
{
|
|
Vertical,
|
|
Horizontal
|
|
}
|
|
|
|
public enum NavigatorTypeEnum
|
|
{
|
|
Firefox,
|
|
IE,
|
|
Opera,
|
|
Safari,
|
|
Other
|
|
}
|
|
|
|
}
|