summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/ccui.VBox.lua
blob: 9015a29207717881ef643d20a61fc01c3e898420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

---@class ccui.VBox :ccui.Layout
local VBox={ }
ccui.VBox=VBox




---* 
---@param size size_table
---@return boolean
function VBox:initWithSize (size) end
---@overload fun(size_table:size_table):self
---@overload fun():self
---@param size size_table
---@return self
function VBox:create (size) end
---* 
---@return boolean
function VBox:init () end
---* Default constructor<br>
---* js ctor<br>
---* lua new
---@return self
function VBox:VBox () end