Bridge SDK
    Preparing search index...

    Interface Page

    The current page being viewed in the EHR.

    interface Page {
        frames?: Page[];
        href: string;
        html: string;
    }
    Index

    Properties

    Properties

    frames?: Page[]

    frames is an optional property that recursively contains the html, href, and frames of all descendant frames. Returned by getPage(true). getPage(false) and getPage() will not return frames. NOTE: only contains frames that are from the same origin as the parent frame.

    href: string
    html: string