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 setLassoTitle(params: { style: number }): Promise<APIResponse<boolean>>;
params.style
number
0
1
2
3
4
APIResponse<boolean>
result === true
import { PluginNoteAPI } from 'sn-plugin-lib'; /** * 设置套索标题样式的示例。 */ export async function exampleSetLassoTitle() { const res = await PluginNoteAPI.setLassoTitle({ style: 1 }); if (!res.success) { throw new Error(res.error?.message ?? 'setLassoTitle 调用失败'); } return res.result; }