Skip to main content

@microsoft/fast-foundation > AutoUpdateMode

AutoUpdateMode type

Defines if the component updates its position automatically. Calling update() always provokes an update. anchor - the component only updates its position when the anchor resizes (default) auto - the component updates its position when: - update() is called - the anchor resizes - the window resizes - the viewport resizes - any scroll event in the document

Signature:
export declare type AutoUpdateMode = "anchor" | "auto";