Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
获取套索的文本框数据。
static getLassoText(): Promise<APIResponse<TextBox[]>>;
APIResponse<TextBox[]>
result
TextBox
import { PluginNoteAPI } from 'sn-plugin-lib'; /** * 获取套索文本框列表的示例。 */ export async function exampleGetLassoText() { const res = await PluginNoteAPI.getLassoText(); if (!res.success) { throw new Error(res.error?.message ?? 'getLassoText 调用失败'); } return res.result; }