AboutSupportDeveloper GuideVersion 18.0.9

Type alias LockUnlockPageConfig

LockUnlockPageConfig: {
    disabled?: boolean;
    lockedIconUrl?: string;
    type: LockUnlockPage;
    unlockedIconUrl?: string;
}

Configuration Object for the page lock/unlock button within the browser toolbar

Type declaration

  • Optional disabled?: boolean
  • Optional lockedIconUrl?: string
  • type: LockUnlockPage
  • Optional unlockedIconUrl?: string

Example

const lockUnlockPageConfig: LockUnlockPageConfig = {
type: BrowserButtonType.LockUnlockPage,
disabled: false
};