stimulsoft-forms
Version:
Stimulsoft PDF Forms
11 lines (10 loc) • 396 B
TypeScript
import { StiValueElement } from "../../../system/interfaces";
import StiJson from "../../../system/StiJson";
export declare class StiRadioButtonCellItem implements StiValueElement {
name?: string;
isChecked?: boolean;
constructor(name?: string, isChecked?: boolean);
saveToJsonObject(options: any): StiJson;
get value(): Object;
loadFromJsonObject(json: StiJson): void;
}