查看“︁Lua接口/客户端窗口操作”︁的源代码
来自天龙知识库
←
Lua接口/客户端窗口操作
跳到导航
跳到搜索
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
__NOTOC__ <div class="lua-reference" style="max-width:1200px;margin:0 auto;line-height:1.8;color:#29343a;font-family:Arial,'Microsoft YaHei','PingFang SC',sans-serif;letter-spacing:0;overflow-wrap:anywhere;"> [[首页|首页]] · [[Lua接口/客户端函数索引|客户端接口]] · [[Lua接口/客户端窗口操作|窗口操作]] · [[Lua接口/客户端事件|客户端事件]] <div style="padding:14px 0;border-top:3px solid #a36761;"> <div role="heading" aria-level="2" style="font-size:22px;font-weight:bold;color:#193d37;">客户端窗口操作</div> <div style="margin-top:6px;color:#657078;">界面脚本通过窗口对象操作控件:29 个控件类 · 144 个方法</div> </div> <div style="margin:10px 0;padding:10px 12px;border-left:3px solid #9a7940;background:#faf7f0;font-size:13px;color:#5f5136;">本页信息由客户端 C++ 绑定源码与 230 个界面脚本自动整理:参数取实现体的 <code>args[n]</code> 取值点(对象方法已扣除 <code>self</code> 占用的栈位),调用示例取脚本中的真实调用,<b>未经运行验证</b>;用途摘要按实现体归纳,仅供参考。</div> == 使用方式 == 界面脚本里的 <code style="white-space:normal;overflow-wrap:anywhere;">this</code> 就是当前窗口对象,在界面事件回调里直接调用: <pre style="white-space:pre-wrap;overflow-wrap:anywhere;font-size:13px;line-height:1.7;padding:12px;background:#f5f7f8;border:1px solid #dbe3e6;">function ChatInfo_OnEvent(event, arg1, arg2) if event == "OPEN_WINDOW" then this:Show() local visible = this:IsVisible() end end</pre> * <code style="white-space:normal;overflow-wrap:anywhere;">this:RegisterEvent("事件名")</code> 订阅本窗口关心的事件,事件名见[[Lua接口/客户端事件|客户端事件]]。 * <code style="white-space:normal;overflow-wrap:anywhere;">this:Show()</code> 与 <code style="white-space:normal;overflow-wrap:anywhere;">this:Hide()</code> 控制显示与隐藏,<code style="white-space:normal;overflow-wrap:anywhere;">this:IsVisible()</code> 返回当前是否可见。 * <code style="white-space:normal;overflow-wrap:anywhere;">this:CareObject(对象编号)</code> 关注某个对象,服务器状态变化时触发 <code style="white-space:normal;overflow-wrap:anywhere;">OBJECT_CARED_EVENT</code>。 * <code style="white-space:normal;overflow-wrap:anywhere;">CEArg</code> 是事件参数对象,用 <code style="white-space:normal;overflow-wrap:anywhere;">CEArg:GetValue(索引)</code> 取事件携带的数据。 == 控件方法 == 控件对象由界面管理器创建后交给脚本,脚本中多以 <code style="white-space:normal;overflow-wrap:anywhere;">this</code> 或局部变量持有,没有固定的全局对象名。 === Window(27) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:AutoMousePosition(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:CaptureInput()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:CenterWindow()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:Disable()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:Enable()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:FlashMe(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetItemElementsString()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetName()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetPixelRect()</code><br /><small style="color:#657078;">4 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetProperty(string)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetText()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetToolTip()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetType()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:GetWindowSize()</code><br /><small style="color:#657078;">2 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:Hide()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:IsVisible()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetClippedByParent(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetForce()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetItemElementsString(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetProperty(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetText(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetTextOriginal(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetToolTip(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetWindowCenter(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:SetWindowSize(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:Show()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Window:TransText()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ListBox(18) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:AddItem(string, number, string, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:ClearListBox()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:ClearSelectState()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:DelItem(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:EnsureItemIsVisable(number)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetClickItem()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetCurrentFirstItem()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetFirstSelectItem()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetItem(number)</code><br /><small style="color:#657078;">2 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetItemByText(string)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetItemNumber()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:GetItemUserData(number)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:SetCurrentFirstItem(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:SetItemSelect(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:SetItemSelectByItemID(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:SetItemTooltip(number, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:SetItemUserData(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ListBox:SetListItemText(number, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === CtrlList(17) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:AddColumn(string, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:AddNewItem(string, number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:DeleteItem(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:GetColumnCount()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:GetItemCount()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:GetItemText(number, number)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:GetRowUserData(number)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:GetSelectItem()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:InsertColumn(string, number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:RemoveAllItem()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:RemoveColumnByPos(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:SetItemData(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:SetItemText(number, number, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:SetRowTooltip(number, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:SetRowUserData(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:SetSelectItem(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CtrlList:SetVertScollPosition(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ComplexWindow(12) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddActionElement(number, number, number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddChatBoardElement(string, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddImpactElement(string, number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddItemElement(number, number, number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddJiaoZiElement(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddMoneyElement(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddOptionElement(string, string, string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:AddTextElement(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:ClearAllElement()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:PageEnd()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:RemoveTopElement()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComplexWindow:SetTextColour()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ActionButton(10) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:Bright()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:DoAction()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:DoSubAction()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:GetActionItem()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:Gloom()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:SetActionItem(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:SetFlash(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:SetNewFlash()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:SetPushed(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ActionButton:ShowPercentage(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === Scenemap(8) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:CloseSceneMap()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:DoScroll(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:GetMouseScenePos()</code><br /><small style="color:#657078;">2 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:SetSceneFileName(number, number, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:SetSceneZoomMode(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:UpdateFlag()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:UpdateSceneMap()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Scenemap:UpdateViewRect()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === CUIWindowItem(8) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:CareObject(number, number, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:ClickHide()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:Hide()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:IsVisible()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:RegisterEvent(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:Show()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:TogleShow()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CUIWindowItem:TransAllWindowText()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small> |} === ComboBox(5) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComboBox:AddTextItem(string, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComboBox:ComboBoxAddItem()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComboBox:GetCurrentSelect()</code><br /><small style="color:#657078;">2 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComboBox:ResetList()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ComboBox:SetCurrentSelect(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ChatHistory(4) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatHistory:ExtendClearRegion()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatHistory:InsertChatString(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatHistory:RemoveAllChatString()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatHistory:ScrollToEnd()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === PopMenu(3) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">PopMenu:ClosePopMenu()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">PopMenu:OpenPopMenu()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">PopMenu:SetPopMenuPos(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === MeshWindow(3) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">MeshWindow:RotateBegin(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">MeshWindow:RotateEnd()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">MeshWindow:SetFakeObject(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ChatChannel(3) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatChannel:AddChannel(string, string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatChannel:ClearAllChannel()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatChannel:GetHoverChannelName()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === Worldmap(3) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Worldmap:GetCurrentSelectScene()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Worldmap:InitWorldMap()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Worldmap:UpdateWorldMap()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ProgressBar(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ProgressBar:GetProgress(number)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ProgressBar:SetProgress(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === Minimap(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Minimap:SetFlagShow(number, boolean)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">Minimap:UpdateFlag()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === CheckButton(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CheckButton:GetCheck()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CheckButton:SetCheck(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === StaticImage(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">StaticImage:SetImage(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">StaticImage:SetImageColor(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ScrollBar(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ScrollBar:GetPosition()</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ScrollBar:SetPosition(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ScrollInfoFixed(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ScrollInfoFixed:ClearInfo()</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ScrollInfoFixed:SetScrollInfoFixed(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === IMEEditBox(2) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">IMEEditBox:SetBlinkText(number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">IMEEditBox:SetSelected(number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ImageListBox(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ImageListBox:AddItem(string, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ImageListBoxEx(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ImageListBoxEx:AddItem(string, number, number)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === SuperTooltip(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">SuperTooltip:PositionSelf(string, string)</code><br /><small style="color:#657078;">2 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ChatBoard(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ChatBoard:SetChatString(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === InfoList(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">InfoList:AddInfo(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === ScrollInfo(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">ScrollInfo:SetScrollInfo(string, string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === SoftKeyWindow(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">SoftKeyWindow:SetAimEditBox(string)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === AnimateWindow(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">AnimateWindow:Play(boolean)</code><br /><small style="color:#657078;">无返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small> |} === CEventArg(1) === {| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;" ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法 ! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明 |- | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">CEventArg:GetValue(string)</code><br /><small style="color:#657078;">1 个返回值</small> | style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIScript.cpp</small> |} </div>
返回
Lua接口/客户端窗口操作
。
导航菜单
页面操作
页面
讨论
阅读
查看源代码
历史
页面操作
页面
讨论
更多
工具
个人工具
创建账号
登录
导航
首页
最近更改
随机页面
MediaWiki帮助
特殊页面
搜索
工具
链入页面
相关更改
页面信息