mirror of https://github.com/axmolengine/axmol.git
63 lines
1.7 KiB
Lua
63 lines
1.7 KiB
Lua
|
|
--------------------------------
|
|
-- @module TextBMFont
|
|
-- @extend Widget
|
|
-- @parent_module ccui
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] setFntFile
|
|
-- @param self
|
|
-- @param #string str
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] getStringLength
|
|
-- @param self
|
|
-- @return long#long ret (return value: long)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] setString
|
|
-- @param self
|
|
-- @param #string str
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] getString
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
-- overload function: create(string, string)
|
|
--
|
|
-- overload function: create()
|
|
--
|
|
-- @function [parent=#TextBMFont] create
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #string str
|
|
-- @return TextBMFont#TextBMFont ret (retunr value: ccui.TextBMFont)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] getVirtualRenderer
|
|
-- @param self
|
|
-- @return Node#Node ret (return value: cc.Node)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] getDescription
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] getVirtualRendererSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TextBMFont] TextBMFont
|
|
-- @param self
|
|
|
|
return nil
|