|
|
| (未显示另一用户的1个中间版本) |
| 第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> |
| <div style="margin:10px 0;padding:10px 12px;border-left:3px solid #9a7940;background:#faf7f0;font-size:13px;color:#5f5136;">本页信息由客户端 C++ 绑定源码与 230 个界面脚本自动整理:参数取实现体的 <code>args[n]</code> 取值点(对象方法已扣除 <code>self</code> 占用的栈位),调用示例取脚本中的真实调用,<b>未经运行验证</b>;用途摘要按实现体归纳,仅供参考。</div>
| |
| == 使用方式 == | | == 使用方式 == |
| 界面脚本里的 <code style="white-space:normal;overflow-wrap:anywhere;">this</code> 就是当前窗口对象,在界面事件回调里直接调用: | | 界面脚本里的 <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() |
| 第17行: |
第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> |