9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
|
/**
|
||
|
* Determines the display mode of the given control or form.
|
||
|
*/
|
||
|
export enum ControlMode {
|
||
|
Display = 1,
|
||
|
Edit = 2,
|
||
|
New = 3,
|
||
|
}
|