summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/ccui.TextBMFont.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/ccui.TextBMFont.lua')
-rw-r--r--meta/3rd/Cocos4.0/ccui.TextBMFont.lua54
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/ccui.TextBMFont.lua b/meta/3rd/Cocos4.0/ccui.TextBMFont.lua
new file mode 100644
index 00000000..81268c8a
--- /dev/null
+++ b/meta/3rd/Cocos4.0/ccui.TextBMFont.lua
@@ -0,0 +1,54 @@
+
+---@class ccui.TextBMFont :ccui.Widget
+local TextBMFont={ }
+ccui.TextBMFont=TextBMFont
+
+
+
+
+---* Gets the string length of the label.<br>
+---* Note: This length will be larger than the raw string length,<br>
+---* if you want to get the raw string length, you should call this->getString().size() instead<br>
+---* return string length.
+---@return int
+function TextBMFont:getStringLength () end
+---* get string value for labelbmfont
+---@return string
+function TextBMFont:getString () end
+---* set string value for labelbmfont
+---@param value string
+---@return self
+function TextBMFont:setString (value) end
+---*
+---@return cc.ResourceData
+function TextBMFont:getRenderFile () end
+---* init a bitmap font atlas with an initial string and the FNT file
+---@param fileName string
+---@return self
+function TextBMFont:setFntFile (fileName) end
+---* reset TextBMFont inner label
+---@return self
+function TextBMFont:resetRender () end
+---@overload fun(string:string,string:string):self
+---@overload fun():self
+---@param text string
+---@param filename string
+---@return self
+function TextBMFont:create (text,filename) end
+---*
+---@return cc.Ref
+function TextBMFont:createInstance () end
+---*
+---@return cc.Node
+function TextBMFont:getVirtualRenderer () end
+---* Returns the "class name" of widget.
+---@return string
+function TextBMFont:getDescription () end
+---*
+---@return size_table
+function TextBMFont:getVirtualRendererSize () end
+---* Default constructor<br>
+---* js ctor<br>
+---* lua new
+---@return self
+function TextBMFont:TextBMFont () end \ No newline at end of file