Added AddMethod and Default x,y,width,height on Add
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b8bd179167
commit
522cd722c0
5 changed files with 63 additions and 22 deletions
10
src/Enums/AddMethod.ts
Normal file
10
src/Enums/AddMethod.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
/**
|
||||
* Add method when creating a container
|
||||
* - Append will append to the last children in list
|
||||
* - Insert will always place it at the begining
|
||||
* (default: Append)
|
||||
*/
|
||||
export enum AddMethod {
|
||||
Append,
|
||||
Insert
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue