Lines Matching refs:formIds

315 notifyVisibleForms(formIds: Array<string>, callback: AsyncCallback<void>): void
327 | formIds | Array<string> | 是 | 卡片标识列表。 |
345 notifyVisibleForms(formIds: Array<string>): Promise<void>
357 | formIds | Array<string> | 是 | 卡片标识列表。 |
380 notifyInvisibleForms(formIds: Array<string>, callback: AsyncCallback<void>): void
392 | formIds | Array<string> | 是 | 卡片标识列表。|
410 notifyInvisibleForms(formIds: Array<string>): Promise<void>
422 | formIds | Array<string> | 是 | 卡片标识列表。 |
445 enableFormsUpdate(formIds: Array<string>, callback: AsyncCallback<void>): void
457 | formIds | Array<string> | 是 | 卡片标识列表。 |
475 enableFormsUpdate(formIds: Array<string>): Promise<void>
487 | formIds | Array<string> | 是 | 卡片标识列表。 |
510 disableFormsUpdate(formIds: Array<string>, callback: AsyncCallback<void>): void
522 | formIds | Array<string> | 是 | 卡片标识列表。 |
540 disableFormsUpdate(formIds: Array<string>): Promise<void>
552 | formIds | Array<string> | 是 | 卡片标识列表。 |
790 deleteInvalidForms(formIds: Array<string>, callback: AsyncCallback<number>): void
802 | formIds | Array<string> | 是 | 有效卡片标识列表。 |
810 let formIds: string[] = new Array('12400633174999288', '12400633174999289');
811 formHost.deleteInvalidForms(formIds, (error: Base.BusinessError, data: number) => {
822 deleteInvalidForms(formIds: Array<string>): Promise<number>
834 | formIds | Array<string> | 是 | 有效卡片标识列表。 |
847 let formIds: string[] = new Array('12400633174999288', '12400633174999289');
848 formHost.deleteInvalidForms(formIds).then((data: number) => {
1004 notifyFormsVisible(formIds: Array<string>, isVisible: boolean, callback: AsyncCallback<voi…
1016 | formIds | Array<string> | 是 | 卡片标识列表。 |
1025 let formIds: string[]= new Array('12400633174999288', '12400633174999289');
1026 formHost.notifyFormsVisible(formIds, true, (error: Base.BusinessError) => {
1035 notifyFormsVisible(formIds: Array<string>, isVisible: boolean): Promise<void>
1047 | formIds | Array<string> | 是 | 卡片标识列表。 |
1061 let formIds: string[] = new Array('12400633174999288', '12400633174999289');
1062 formHost.notifyFormsVisible(formIds, true).then(() => {
1071 notifyFormsEnableUpdate(formIds: Array<string>, isEnableUpdate: boolean, callback: AsyncCallb…
1083 | formIds | Array<string> | 是 | 卡片标识列表。 |
1092 let formIds: string[] = new Array('12400633174999288', '12400633174999289');
1093 formHost.notifyFormsEnableUpdate(formIds, true, (error: Base.BusinessError) => {
1102 notifyFormsEnableUpdate(formIds: Array<string>, isEnableUpdate: boolean): Promise<void>
1114 | formIds | Array<string> | 是 | 卡片标识列表。 |
1128 let formIds: string[] = new Array('12400633174999288', '12400633174999289');
1129 formHost.notifyFormsEnableUpdate(formIds, true).then(() => {