You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/src/Common/Status.ts

33 lines
393 B

export enum Status
{
False = 0,
True = 1,
Canel = -1,
ConverToCircle = 101,
DuplicateRecordName = 102,
}
export enum UpdateDraw
{
None = 0,
Matrix = 1,
Geometry = 2,
Material = 4,
All = ~(~0 << 6)
}
/**
* WblockClne时,遇到重复记录的操作方式
*/
export enum DuplicateRecordCloning
{
Ignore = 1,
Replace = 2,
Rename = 3,
}