Lua接口/客户端窗口操作:修订间差异

来自天龙知识库
跳到导航跳到搜索
雪舞留言 | 贡献
新建客户端 Lua 接口页:全局函数、对象方法、窗口操作与客户端事件
Waylee留言 | 贡献
新建客户端 Lua 接口页:全局函数、对象方法、窗口操作与客户端事件
 
第1行: 第1行:
__NOTOC__
__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;">
<div class="lua-reference">
[[首页|首页]] · [[Lua接口/客户端函数索引|客户端接口]] · [[Lua接口/客户端窗口操作|窗口操作]] · [[Lua接口/客户端事件|客户端事件]]
[[首页|首页]] · [[Lua接口/客户端函数索引|客户端接口]] · [[Lua接口/客户端窗口操作|窗口操作]] · [[Lua接口/客户端事件|客户端事件]]


<div style="padding:14px 0;border-top:3px solid #a36761;">
<div class="lua-lead lua-accent-red">
<div role="heading" aria-level="2" style="font-size:22px;font-weight:bold;color:#193d37;">客户端窗口操作</div>
<div role="heading" aria-level="2" class="lua-h1">客户端窗口操作</div>
<div style="margin-top:6px;color:#657078;">界面脚本通过窗口对象操作控件:29 个控件类 · 144 个方法</div>
<div class="lua-sub">界面脚本通过窗口对象操作控件:29 个控件类 · 144 个方法</div>
</div>
</div>
== 使用方式 ==
== 使用方式 ==
界面脚本里的 <code style="white-space:normal;overflow-wrap:anywhere;">this</code> 就是当前窗口对象,在界面事件回调里直接调用:
界面脚本里的 <code>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)
<pre>function ChatInfo_OnEvent(event, arg1, arg2)
     if event == "OPEN_WINDOW" then
     if event == "OPEN_WINDOW" then
         this:Show()
         this:Show()
第16行: 第16行:
     end
     end
end</pre>
end</pre>
* <code style="white-space:normal;overflow-wrap:anywhere;">this:RegisterEvent("事件名")</code> 订阅本窗口关心的事件,事件名见[[Lua接口/客户端事件|客户端事件]]。
* <code>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>this:Show()</code> 与 <code>this:Hide()</code> 控制显示与隐藏,<code>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>this:CareObject(对象编号)</code> 关注某个对象,服务器状态变化时触发 <code>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>CEArg</code> 是事件参数对象,用 <code>CEArg:GetValue(索引)</code> 取事件携带的数据。


== 控件方法 ==
== 控件方法 ==
控件对象由界面管理器创建后交给脚本,脚本中多以 <code style="white-space:normal;overflow-wrap:anywhere;">this</code> 或局部变量持有,没有固定的全局对象名。下表按控件类分组,方法名可点进独立页查看参数与返回值;页面标题用的是脚本侧名称,与实现类不同时在标题处注明。
控件对象由界面管理器创建后交给脚本,脚本中多以 <code>this</code> 或局部变量持有,没有固定的全局对象名。下表按控件类分组,方法名可点进独立页查看参数与返回值;页面标题用的是脚本侧名称,与实现类不同时在标题处注明。


=== Window(27) ===
=== Window(27) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/AutoMousePosition|Window:AutoMousePosition]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/AutoMousePosition|Window:AutoMousePosition]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/CaptureInput|Window:CaptureInput]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/CaptureInput|Window:CaptureInput]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/CenterWindow|Window:CenterWindow]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/CenterWindow|Window:CenterWindow]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/Disable|Window:Disable]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/Disable|Window:Disable]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.h</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/Enable|Window:Enable]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/Enable|Window:Enable]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.h</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/FlashMe|Window:FlashMe]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/FlashMe|Window:FlashMe]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetItemElementsString|Window:GetItemElementsString]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetItemElementsString|Window:GetItemElementsString]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetName|Window:GetName]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetName|Window:GetName]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.h</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetPixelRect|Window:GetPixelRect]]()</code><br /><small style="color:#657078;">4 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetPixelRect|Window:GetPixelRect]]()</code><br /><small class="lua-muted">4 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetProperty|Window:GetProperty]](string)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetProperty|Window:GetProperty]](string)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetText|Window:GetText]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetText|Window:GetText]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetToolTip|Window:GetToolTip]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetToolTip|Window:GetToolTip]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetType|Window:GetType]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetType|Window:GetType]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.h</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/GetWindowSize|Window:GetWindowSize]]()</code><br /><small style="color:#657078;">2 个返回值</small>
| <code>[[Lua接口/客户端/Window/GetWindowSize|Window:GetWindowSize]]()</code><br /><small class="lua-muted">2 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/Hide|Window:Hide]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/Hide|Window:Hide]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/IsVisible|Window:IsVisible]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Window/IsVisible|Window:IsVisible]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.h</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetClippedByParent|Window:SetClippedByParent]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetClippedByParent|Window:SetClippedByParent]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetForce|Window:SetForce]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetForce|Window:SetForce]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetItemElementsString|Window:SetItemElementsString]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetItemElementsString|Window:SetItemElementsString]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetProperty|Window:SetProperty]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetProperty|Window:SetProperty]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetText|Window:SetText]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetText|Window:SetText]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetTextOriginal|Window:SetTextOriginal]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetTextOriginal|Window:SetTextOriginal]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetToolTip|Window:SetToolTip]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetToolTip|Window:SetToolTip]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetWindowCenter|Window:SetWindowCenter]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetWindowCenter|Window:SetWindowCenter]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/SetWindowSize|Window:SetWindowSize]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/SetWindowSize|Window:SetWindowSize]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/Show|Window:Show]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/Show|Window:Show]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.h</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.h</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Window/TransText|Window:TransText]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Window/TransText|Window:TransText]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ListBox(18) ===
=== ListBox(18) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/AddItem|ListBox:AddItem]](string, number, string, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/AddItem|ListBox:AddItem]](string, number, string, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/ClearListBox|ListBox:ClearListBox]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/ClearListBox|ListBox:ClearListBox]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/ClearSelectState|ListBox:ClearSelectState]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/ClearSelectState|ListBox:ClearSelectState]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/DelItem|ListBox:DelItem]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/DelItem|ListBox:DelItem]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/EnsureItemIsVisable|ListBox:EnsureItemIsVisable]](number)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/EnsureItemIsVisable|ListBox:EnsureItemIsVisable]](number)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetClickItem|ListBox:GetClickItem]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetClickItem|ListBox:GetClickItem]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetCurrentFirstItem|ListBox:GetCurrentFirstItem]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetCurrentFirstItem|ListBox:GetCurrentFirstItem]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetFirstSelectItem|ListBox:GetFirstSelectItem]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetFirstSelectItem|ListBox:GetFirstSelectItem]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetItem|ListBox:GetItem]](number)</code><br /><small style="color:#657078;">2 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetItem|ListBox:GetItem]](number)</code><br /><small class="lua-muted">2 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetItemByText|ListBox:GetItemByText]](string)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetItemByText|ListBox:GetItemByText]](string)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetItemNumber|ListBox:GetItemNumber]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetItemNumber|ListBox:GetItemNumber]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/GetItemUserData|ListBox:GetItemUserData]](number)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ListBox/GetItemUserData|ListBox:GetItemUserData]](number)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/SetCurrentFirstItem|ListBox:SetCurrentFirstItem]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/SetCurrentFirstItem|ListBox:SetCurrentFirstItem]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/SetItemSelect|ListBox:SetItemSelect]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/SetItemSelect|ListBox:SetItemSelect]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/SetItemSelectByItemID|ListBox:SetItemSelectByItemID]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/SetItemSelectByItemID|ListBox:SetItemSelectByItemID]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/SetItemTooltip|ListBox:SetItemTooltip]](number, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/SetItemTooltip|ListBox:SetItemTooltip]](number, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/SetItemUserData|ListBox:SetItemUserData]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/SetItemUserData|ListBox:SetItemUserData]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ListBox/SetListItemText|ListBox:SetListItemText]](number, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ListBox/SetListItemText|ListBox:SetListItemText]](number, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== CtrlList(17) ===
=== CtrlList(17) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/AddColumn|CtrlList:AddColumn]](string, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/AddColumn|CtrlList:AddColumn]](string, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/AddNewItem|CtrlList:AddNewItem]](string, number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/AddNewItem|CtrlList:AddNewItem]](string, number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/DeleteItem|CtrlList:DeleteItem]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/DeleteItem|CtrlList:DeleteItem]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/GetColumnCount|CtrlList:GetColumnCount]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CtrlList/GetColumnCount|CtrlList:GetColumnCount]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/GetItemCount|CtrlList:GetItemCount]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CtrlList/GetItemCount|CtrlList:GetItemCount]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/GetItemText|CtrlList:GetItemText]](number, number)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CtrlList/GetItemText|CtrlList:GetItemText]](number, number)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/GetRowUserData|CtrlList:GetRowUserData]](number)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CtrlList/GetRowUserData|CtrlList:GetRowUserData]](number)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/GetSelectItem|CtrlList:GetSelectItem]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CtrlList/GetSelectItem|CtrlList:GetSelectItem]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/InsertColumn|CtrlList:InsertColumn]](string, number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/InsertColumn|CtrlList:InsertColumn]](string, number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/RemoveAllItem|CtrlList:RemoveAllItem]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/RemoveAllItem|CtrlList:RemoveAllItem]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/RemoveColumnByPos|CtrlList:RemoveColumnByPos]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/RemoveColumnByPos|CtrlList:RemoveColumnByPos]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/SetItemData|CtrlList:SetItemData]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/SetItemData|CtrlList:SetItemData]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/SetItemText|CtrlList:SetItemText]](number, number, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/SetItemText|CtrlList:SetItemText]](number, number, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/SetRowTooltip|CtrlList:SetRowTooltip]](number, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/SetRowTooltip|CtrlList:SetRowTooltip]](number, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/SetRowUserData|CtrlList:SetRowUserData]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/SetRowUserData|CtrlList:SetRowUserData]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/SetSelectItem|CtrlList:SetSelectItem]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/SetSelectItem|CtrlList:SetSelectItem]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CtrlList/SetVertScollPosition|CtrlList:SetVertScollPosition]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CtrlList/SetVertScollPosition|CtrlList:SetVertScollPosition]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ComplexWindow(12) ===
=== ComplexWindow(12) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddActionElement|ComplexWindow:AddActionElement]](number, number, number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddActionElement|ComplexWindow:AddActionElement]](number, number, number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddChatBoardElement|ComplexWindow:AddChatBoardElement]](string, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddChatBoardElement|ComplexWindow:AddChatBoardElement]](string, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddImpactElement|ComplexWindow:AddImpactElement]](string, number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddImpactElement|ComplexWindow:AddImpactElement]](string, number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddItemElement|ComplexWindow:AddItemElement]](number, number, number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddItemElement|ComplexWindow:AddItemElement]](number, number, number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddJiaoZiElement|ComplexWindow:AddJiaoZiElement]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddJiaoZiElement|ComplexWindow:AddJiaoZiElement]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddMoneyElement|ComplexWindow:AddMoneyElement]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddMoneyElement|ComplexWindow:AddMoneyElement]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddOptionElement|ComplexWindow:AddOptionElement]](string, string, string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddOptionElement|ComplexWindow:AddOptionElement]](string, string, string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/AddTextElement|ComplexWindow:AddTextElement]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/AddTextElement|ComplexWindow:AddTextElement]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/ClearAllElement|ComplexWindow:ClearAllElement]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/ClearAllElement|ComplexWindow:ClearAllElement]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/PageEnd|ComplexWindow:PageEnd]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/PageEnd|ComplexWindow:PageEnd]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/RemoveTopElement|ComplexWindow:RemoveTopElement]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/RemoveTopElement|ComplexWindow:RemoveTopElement]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComplexWindow/SetTextColour|ComplexWindow:SetTextColour]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComplexWindow/SetTextColour|ComplexWindow:SetTextColour]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ActionButton(10) ===
=== ActionButton(10) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/Bright|ActionButton:Bright]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/Bright|ActionButton:Bright]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/DoAction|ActionButton:DoAction]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/DoAction|ActionButton:DoAction]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/DoSubAction|ActionButton:DoSubAction]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/DoSubAction|ActionButton:DoSubAction]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/GetActionItem|ActionButton:GetActionItem]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ActionButton/GetActionItem|ActionButton:GetActionItem]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/Gloom|ActionButton:Gloom]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/Gloom|ActionButton:Gloom]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/SetActionItem|ActionButton:SetActionItem]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/SetActionItem|ActionButton:SetActionItem]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/SetFlash|ActionButton:SetFlash]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/SetFlash|ActionButton:SetFlash]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/SetNewFlash|ActionButton:SetNewFlash]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/SetNewFlash|ActionButton:SetNewFlash]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/SetPushed|ActionButton:SetPushed]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/SetPushed|ActionButton:SetPushed]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ActionButton/ShowPercentage|ActionButton:ShowPercentage]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ActionButton/ShowPercentage|ActionButton:ShowPercentage]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== Scenemap(8) ===
=== Scenemap(8) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/CloseSceneMap|Scenemap:CloseSceneMap]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/CloseSceneMap|Scenemap:CloseSceneMap]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/DoScroll|Scenemap:DoScroll]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/DoScroll|Scenemap:DoScroll]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/GetMouseScenePos|Scenemap:GetMouseScenePos]]()</code><br /><small style="color:#657078;">2 个返回值</small>
| <code>[[Lua接口/客户端/Scenemap/GetMouseScenePos|Scenemap:GetMouseScenePos]]()</code><br /><small class="lua-muted">2 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/SetSceneFileName|Scenemap:SetSceneFileName]](number, number, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/SetSceneFileName|Scenemap:SetSceneFileName]](number, number, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/SetSceneZoomMode|Scenemap:SetSceneZoomMode]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/SetSceneZoomMode|Scenemap:SetSceneZoomMode]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/UpdateFlag|Scenemap:UpdateFlag]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/UpdateFlag|Scenemap:UpdateFlag]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/UpdateSceneMap|Scenemap:UpdateSceneMap]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/UpdateSceneMap|Scenemap:UpdateSceneMap]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Scenemap/UpdateViewRect|Scenemap:UpdateViewRect]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Scenemap/UpdateViewRect|Scenemap:UpdateViewRect]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== CUIWindowItem(8) ===
=== CUIWindowItem(8) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/CareObject|CUIWindowItem:CareObject]](number, number, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/CareObject|CUIWindowItem:CareObject]](number, number, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/ClickHide|CUIWindowItem:ClickHide]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/ClickHide|CUIWindowItem:ClickHide]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/Hide|CUIWindowItem:Hide]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/Hide|CUIWindowItem:Hide]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/IsVisible|CUIWindowItem:IsVisible]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/IsVisible|CUIWindowItem:IsVisible]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/RegisterEvent|CUIWindowItem:RegisterEvent]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/RegisterEvent|CUIWindowItem:RegisterEvent]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/Show|CUIWindowItem:Show]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/Show|CUIWindowItem:Show]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/TogleShow|CUIWindowItem:TogleShow]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/TogleShow|CUIWindowItem:TogleShow]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CUIWindowItem/TransAllWindowText|CUIWindowItem:TransAllWindowText]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CUIWindowItem/TransAllWindowText|CUIWindowItem:TransAllWindowText]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIWindowMng.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UIWindowMng.cpp</small>
|}
|}


=== ComboBox(5) ===
=== ComboBox(5) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComboBox/AddTextItem|ComboBox:AddTextItem]](string, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComboBox/AddTextItem|ComboBox:AddTextItem]](string, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComboBox/ComboBoxAddItem|ComboBox:ComboBoxAddItem]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComboBox/ComboBoxAddItem|ComboBox:ComboBoxAddItem]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComboBox/GetCurrentSelect|ComboBox:GetCurrentSelect]]()</code><br /><small style="color:#657078;">2 个返回值</small>
| <code>[[Lua接口/客户端/ComboBox/GetCurrentSelect|ComboBox:GetCurrentSelect]]()</code><br /><small class="lua-muted">2 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComboBox/ResetList|ComboBox:ResetList]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComboBox/ResetList|ComboBox:ResetList]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ComboBox/SetCurrentSelect|ComboBox:SetCurrentSelect]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ComboBox/SetCurrentSelect|ComboBox:SetCurrentSelect]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ChatHistory(4) ===
=== ChatHistory(4) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatHistory/ExtendClearRegion|ChatHistory:ExtendClearRegion]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatHistory/ExtendClearRegion|ChatHistory:ExtendClearRegion]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatHistory/InsertChatString|ChatHistory:InsertChatString]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatHistory/InsertChatString|ChatHistory:InsertChatString]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatHistory/RemoveAllChatString|ChatHistory:RemoveAllChatString]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatHistory/RemoveAllChatString|ChatHistory:RemoveAllChatString]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatHistory/ScrollToEnd|ChatHistory:ScrollToEnd]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatHistory/ScrollToEnd|ChatHistory:ScrollToEnd]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== PopMenu(3) ===
=== PopMenu(3) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/PopMenu/ClosePopMenu|PopMenu:ClosePopMenu]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/PopMenu/ClosePopMenu|PopMenu:ClosePopMenu]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/PopMenu/OpenPopMenu|PopMenu:OpenPopMenu]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/PopMenu/OpenPopMenu|PopMenu:OpenPopMenu]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/PopMenu/SetPopMenuPos|PopMenu:SetPopMenuPos]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/PopMenu/SetPopMenuPos|PopMenu:SetPopMenuPos]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== MeshWindow(3) ===
=== MeshWindow(3) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/MeshWindow/RotateBegin|MeshWindow:RotateBegin]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/MeshWindow/RotateBegin|MeshWindow:RotateBegin]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/MeshWindow/RotateEnd|MeshWindow:RotateEnd]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/MeshWindow/RotateEnd|MeshWindow:RotateEnd]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/MeshWindow/SetFakeObject|MeshWindow:SetFakeObject]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/MeshWindow/SetFakeObject|MeshWindow:SetFakeObject]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ChatChannel(3) ===
=== ChatChannel(3) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatChannel/AddChannel|ChatChannel:AddChannel]](string, string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatChannel/AddChannel|ChatChannel:AddChannel]](string, string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatChannel/ClearAllChannel|ChatChannel:ClearAllChannel]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatChannel/ClearAllChannel|ChatChannel:ClearAllChannel]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatChannel/GetHoverChannelName|ChatChannel:GetHoverChannelName]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ChatChannel/GetHoverChannelName|ChatChannel:GetHoverChannelName]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== Worldmap(3) ===
=== Worldmap(3) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Worldmap/GetCurrentSelectScene|Worldmap:GetCurrentSelectScene]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/Worldmap/GetCurrentSelectScene|Worldmap:GetCurrentSelectScene]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Worldmap/InitWorldMap|Worldmap:InitWorldMap]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Worldmap/InitWorldMap|Worldmap:InitWorldMap]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Worldmap/UpdateWorldMap|Worldmap:UpdateWorldMap]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Worldmap/UpdateWorldMap|Worldmap:UpdateWorldMap]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ProgressBar(2) ===
=== ProgressBar(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ProgressBar/GetProgress|ProgressBar:GetProgress]](number)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ProgressBar/GetProgress|ProgressBar:GetProgress]](number)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ProgressBar/SetProgress|ProgressBar:SetProgress]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ProgressBar/SetProgress|ProgressBar:SetProgress]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== Minimap(2) ===
=== Minimap(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Minimap/SetFlagShow|Minimap:SetFlagShow]](number, boolean)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Minimap/SetFlagShow|Minimap:SetFlagShow]](number, boolean)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/Minimap/UpdateFlag|Minimap:UpdateFlag]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/Minimap/UpdateFlag|Minimap:UpdateFlag]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== CheckButton(2) ===
=== CheckButton(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CheckButton/GetCheck|CheckButton:GetCheck]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CheckButton/GetCheck|CheckButton:GetCheck]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CheckButton/SetCheck|CheckButton:SetCheck]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/CheckButton/SetCheck|CheckButton:SetCheck]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== StaticImage(2) ===
=== StaticImage(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/StaticImage/SetImage|StaticImage:SetImage]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/StaticImage/SetImage|StaticImage:SetImage]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/StaticImage/SetImageColor|StaticImage:SetImageColor]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/StaticImage/SetImageColor|StaticImage:SetImageColor]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ScrollBar(2) ===
=== ScrollBar(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ScrollBar/GetPosition|ScrollBar:GetPosition]]()</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/ScrollBar/GetPosition|ScrollBar:GetPosition]]()</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ScrollBar/SetPosition|ScrollBar:SetPosition]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ScrollBar/SetPosition|ScrollBar:SetPosition]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ScrollInfoFixed(2) ===
=== ScrollInfoFixed(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ScrollInfoFixed/ClearInfo|ScrollInfoFixed:ClearInfo]]()</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ScrollInfoFixed/ClearInfo|ScrollInfoFixed:ClearInfo]]()</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ScrollInfoFixed/SetScrollInfoFixed|ScrollInfoFixed:SetScrollInfoFixed]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ScrollInfoFixed/SetScrollInfoFixed|ScrollInfoFixed:SetScrollInfoFixed]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== IMEEditBox(2) ===
=== IMEEditBox(2) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/IMEEditBox/SetBlinkText|IMEEditBox:SetBlinkText]](number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/IMEEditBox/SetBlinkText|IMEEditBox:SetBlinkText]](number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/IMEEditBox/SetSelected|IMEEditBox:SetSelected]](number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/IMEEditBox/SetSelected|IMEEditBox:SetSelected]](number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ImageListBox(1) ===
=== ImageListBox(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ImageListBox/AddItem|ImageListBox:AddItem]](string, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ImageListBox/AddItem|ImageListBox:AddItem]](string, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ImageListBoxEx(1) ===
=== ImageListBoxEx(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ImageListBoxEx/AddItem|ImageListBoxEx:AddItem]](string, number, number)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ImageListBoxEx/AddItem|ImageListBoxEx:AddItem]](string, number, number)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== SuperTooltip(1) ===
=== SuperTooltip(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/SuperTooltip/PositionSelf|SuperTooltip:PositionSelf]](string, string)</code><br /><small style="color:#657078;">2 个返回值</small>
| <code>[[Lua接口/客户端/SuperTooltip/PositionSelf|SuperTooltip:PositionSelf]](string, string)</code><br /><small class="lua-muted">2 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ChatBoard(1) ===
=== ChatBoard(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ChatBoard/SetChatString|ChatBoard:SetChatString]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ChatBoard/SetChatString|ChatBoard:SetChatString]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== InfoList(1) ===
=== InfoList(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/InfoList/AddInfo|InfoList:AddInfo]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/InfoList/AddInfo|InfoList:AddInfo]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== ScrollInfo(1) ===
=== ScrollInfo(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/ScrollInfo/SetScrollInfo|ScrollInfo:SetScrollInfo]](string, string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/ScrollInfo/SetScrollInfo|ScrollInfo:SetScrollInfo]](string, string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 读取客户端本地数据<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 读取客户端本地数据<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== SoftKeyWindow(1) ===
=== SoftKeyWindow(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/SoftKeyWindow/SetAimEditBox|SoftKeyWindow:SetAimEditBox]](string)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/SoftKeyWindow/SetAimEditBox|SoftKeyWindow:SetAimEditBox]](string)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== AnimateWindow(1) ===
=== AnimateWindow(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/AnimateWindow/Play|AnimateWindow:Play]](boolean)</code><br /><small style="color:#657078;">无返回值</small>
| <code>[[Lua接口/客户端/AnimateWindow/Play|AnimateWindow:Play]](boolean)</code><br /><small class="lua-muted">无返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UILuaControl.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UILuaControl.cpp</small>
|}
|}


=== CEArg(实现类 CEventArg)(1) ===
=== CEArg(实现类 CEventArg)(1) ===
{| class="wikitable" style="width:100%;table-layout:fixed;border-collapse:collapse;font-size:13px;"
{| class="wikitable"
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;width:44%;" | 方法
! scope="col" class="lua-w44" | 方法
! scope="col" style="text-align:left;background:#edf3f2;padding:8px;" | 说明
! scope="col" | 说明
|-
|-
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | <code style="white-space:normal;overflow-wrap:anywhere;">[[Lua接口/客户端/CEArg/GetValue|CEArg:GetValue]](string)</code><br /><small style="color:#657078;">1 个返回值</small>
| <code>[[Lua接口/客户端/CEArg/GetValue|CEArg:GetValue]](string)</code><br /><small class="lua-muted">1 个返回值</small>
| style="padding:8px;vertical-align:top;overflow-wrap:anywhere;" | 实现体未体现明确的外部效果<br /><small style="color:#657078;">CEGUISystem/UIScript.cpp</small>
| 实现体未体现明确的外部效果<br /><small class="lua-muted">CEGUISystem/UIScript.cpp</small>
|}
|}


</div>
</div>

2026年9月19日 (六) 17:00的最新版本

首页 · 客户端接口 · 窗口操作 · 客户端事件

客户端窗口操作
界面脚本通过窗口对象操作控件:29 个控件类 · 144 个方法

使用方式

界面脚本里的 this 就是当前窗口对象,在界面事件回调里直接调用:

function ChatInfo_OnEvent(event, arg1, arg2)
    if event == "OPEN_WINDOW" then
        this:Show()
        local visible = this:IsVisible()
    end
end
  • this:RegisterEvent("事件名") 订阅本窗口关心的事件,事件名见客户端事件
  • this:Show()this:Hide() 控制显示与隐藏,this:IsVisible() 返回当前是否可见。
  • this:CareObject(对象编号) 关注某个对象,服务器状态变化时触发 OBJECT_CARED_EVENT
  • CEArg 是事件参数对象,用 CEArg:GetValue(索引) 取事件携带的数据。

控件方法

控件对象由界面管理器创建后交给脚本,脚本中多以 this 或局部变量持有,没有固定的全局对象名。下表按控件类分组,方法名可点进独立页查看参数与返回值;页面标题用的是脚本侧名称,与实现类不同时在标题处注明。

Window(27)

方法 说明
Window:AutoMousePosition(string, string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:CaptureInput()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:CenterWindow()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:Disable()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.h
Window:Enable()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.h
Window:FlashMe(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:GetItemElementsString()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:GetName()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.h
Window:GetPixelRect()
4 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:GetProperty(string)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:GetText()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:GetToolTip()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:GetType()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.h
Window:GetWindowSize()
2 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:Hide()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:IsVisible()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.h
Window:SetClippedByParent(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:SetForce()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:SetItemElementsString(string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
Window:SetProperty(string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
Window:SetText(number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
Window:SetTextOriginal(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:SetToolTip(string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
Window:SetWindowCenter(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:SetWindowSize(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Window:Show()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.h
Window:TransText()
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp

ListBox(18)

方法 说明
ListBox:AddItem(string, number, string, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ListBox:ClearListBox()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:ClearSelectState()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:DelItem(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:EnsureItemIsVisable(number)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:GetClickItem()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:GetCurrentFirstItem()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:GetFirstSelectItem()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:GetItem(number)
2 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:GetItemByText(string)
1 个返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ListBox:GetItemNumber()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:GetItemUserData(number)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:SetCurrentFirstItem(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:SetItemSelect(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:SetItemSelectByItemID(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:SetItemTooltip(number, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ListBox:SetItemUserData(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ListBox:SetListItemText(number, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp

CtrlList(17)

方法 说明
CtrlList:AddColumn(string, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
CtrlList:AddNewItem(string, number, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
CtrlList:DeleteItem(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:GetColumnCount()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:GetItemCount()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:GetItemText(number, number)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:GetRowUserData(number)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:GetSelectItem()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:InsertColumn(string, number, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
CtrlList:RemoveAllItem()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:RemoveColumnByPos(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:SetItemData(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:SetItemText(number, number, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
CtrlList:SetRowTooltip(number, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
CtrlList:SetRowUserData(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:SetSelectItem(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CtrlList:SetVertScollPosition(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ComplexWindow(12)

方法 说明
ComplexWindow:AddActionElement(number, number, number, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddChatBoardElement(string, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddImpactElement(string, number, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddItemElement(number, number, number, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddJiaoZiElement(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddMoneyElement(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddOptionElement(string, string, string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComplexWindow:AddTextElement(string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComplexWindow:ClearAllElement()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComplexWindow:PageEnd()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComplexWindow:RemoveTopElement()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComplexWindow:SetTextColour()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ActionButton(10)

方法 说明
ActionButton:Bright()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:DoAction()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:DoSubAction()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:GetActionItem()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:Gloom()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:SetActionItem(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:SetFlash(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:SetNewFlash()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:SetPushed(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ActionButton:ShowPercentage(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

Scenemap(8)

方法 说明
Scenemap:CloseSceneMap()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:DoScroll(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:GetMouseScenePos()
2 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:SetSceneFileName(number, number, string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:SetSceneZoomMode(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:UpdateFlag()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:UpdateSceneMap()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Scenemap:UpdateViewRect()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

CUIWindowItem(8)

方法 说明
CUIWindowItem:CareObject(number, number, string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:ClickHide()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:Hide()
无返回值
读取客户端本地数据
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:IsVisible()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:RegisterEvent(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:Show()
无返回值
读取客户端本地数据
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:TogleShow()
无返回值
读取客户端本地数据
CEGUISystem/UIWindowMng.cpp
CUIWindowItem:TransAllWindowText()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UIWindowMng.cpp

ComboBox(5)

方法 说明
ComboBox:AddTextItem(string, number)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ComboBox:ComboBoxAddItem()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComboBox:GetCurrentSelect()
2 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComboBox:ResetList()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ComboBox:SetCurrentSelect(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ChatHistory(4)

方法 说明
ChatHistory:ExtendClearRegion()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ChatHistory:InsertChatString(string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ChatHistory:RemoveAllChatString()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ChatHistory:ScrollToEnd()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

PopMenu(3)

方法 说明
PopMenu:ClosePopMenu()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
PopMenu:OpenPopMenu()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
PopMenu:SetPopMenuPos(string, string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

MeshWindow(3)

方法 说明
MeshWindow:RotateBegin(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
MeshWindow:RotateEnd()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
MeshWindow:SetFakeObject(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ChatChannel(3)

方法 说明
ChatChannel:AddChannel(string, string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
ChatChannel:ClearAllChannel()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ChatChannel:GetHoverChannelName()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

Worldmap(3)

方法 说明
Worldmap:GetCurrentSelectScene()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Worldmap:InitWorldMap()
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
Worldmap:UpdateWorldMap()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ProgressBar(2)

方法 说明
ProgressBar:GetProgress(number)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ProgressBar:SetProgress(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

Minimap(2)

方法 说明
Minimap:SetFlagShow(number, boolean)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
Minimap:UpdateFlag()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

CheckButton(2)

方法 说明
CheckButton:GetCheck()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
CheckButton:SetCheck(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

StaticImage(2)

方法 说明
StaticImage:SetImage(string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp
StaticImage:SetImageColor(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ScrollBar(2)

方法 说明
ScrollBar:GetPosition()
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ScrollBar:SetPosition(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ScrollInfoFixed(2)

方法 说明
ScrollInfoFixed:ClearInfo()
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
ScrollInfoFixed:SetScrollInfoFixed(string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp

IMEEditBox(2)

方法 说明
IMEEditBox:SetBlinkText(number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp
IMEEditBox:SetSelected(number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ImageListBox(1)

方法 说明
ImageListBox:AddItem(string, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ImageListBoxEx(1)

方法 说明
ImageListBoxEx:AddItem(string, number, number)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

SuperTooltip(1)

方法 说明
SuperTooltip:PositionSelf(string, string)
2 个返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

ChatBoard(1)

方法 说明
ChatBoard:SetChatString(string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp

InfoList(1)

方法 说明
InfoList:AddInfo(string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp

ScrollInfo(1)

方法 说明
ScrollInfo:SetScrollInfo(string, string)
无返回值
读取客户端本地数据
CEGUISystem/UILuaControl.cpp

SoftKeyWindow(1)

方法 说明
SoftKeyWindow:SetAimEditBox(string)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

AnimateWindow(1)

方法 说明
AnimateWindow:Play(boolean)
无返回值
实现体未体现明确的外部效果
CEGUISystem/UILuaControl.cpp

CEArg(实现类 CEventArg)(1)

方法 说明
CEArg:GetValue(string)
1 个返回值
实现体未体现明确的外部效果
CEGUISystem/UIScript.cpp