mirror of https://github.com/axmolengine/axmol.git
58 lines
1.5 KiB
Lua
58 lines
1.5 KiB
Lua
|
|
--------------------------------
|
|
-- @module RichText
|
|
--------------------------------
|
|
-- @function [parent=#RichText] insertElement
|
|
-- @param self
|
|
-- @param #ccui.RichElement richelement
|
|
-- @param #int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] setAnchorPoint
|
|
-- @param self
|
|
-- @param #point_table point
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] pushBackElement
|
|
-- @param self
|
|
-- @param #ccui.RichElement richelement
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] formatText
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] ignoreContentAdaptWithSize
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] setVerticalSpace
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] getContentSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- overload function: removeElement(ccui.RichElement)
|
|
--
|
|
-- overload function: removeElement(int)
|
|
--
|
|
-- @function [parent=#RichText] removeElement
|
|
-- @param self
|
|
-- @param #int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] create
|
|
-- @param self
|
|
-- @return RichText#RichText ret (return value: ccui.RichText)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#RichText] RichText
|
|
-- @param self
|
|
|
|
return nil
|