mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
15 lines
120 B
V
15 lines
120 B
V
module gx
|
|
|
|
pub enum HorizontalAlign {
|
|
left
|
|
center
|
|
right
|
|
}
|
|
|
|
pub enum VerticalAlign {
|
|
top
|
|
middle
|
|
bottom
|
|
baseline
|
|
}
|