blob: 72769f8e9c91367c435da62a2e2280f2a7257b45 (
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
26
27
28
29
30
31
32
33
34
35
|
---@meta
---@class ccui.LayoutParameter :cc.Ref
local LayoutParameter={ }
ccui.LayoutParameter=LayoutParameter
---* Create a copy of original LayoutParameter.<br>
---* return A LayoutParameter pointer.
---@return self
function LayoutParameter:clone () end
---* Gets LayoutParameterType of LayoutParameter.<br>
---* see LayoutParameterType.<br>
---* return LayoutParameterType
---@return int
function LayoutParameter:getLayoutType () end
---* Create a cloned instance of LayoutParameter.<br>
---* return A LayoutParameter pointer.
---@return self
function LayoutParameter:createCloneInstance () end
---* Copy all the member field from argument LayoutParameter to self.<br>
---* param model A LayoutParameter instance.
---@param model ccui.LayoutParameter
---@return self
function LayoutParameter:copyProperties (model) end
---* Create a empty LayoutParameter.<br>
---* return A autorelease LayoutParameter instance.
---@return self
function LayoutParameter:create () end
---* Default constructor.<br>
---* lua new
---@return self
function LayoutParameter:LayoutParameter () end
|