Stay organized with collections
Save and categorize content based on your preferences.
OpenAs
An enum that specifies how to open a URL.
The client can open a URL as either a full size window (if that is the frame used by the
client), or an overlay (such as a pop-up). The implementation depends on the client platform
capabilities, and the value selected may be ignored if the client does not support it. FULL_SIZE is supported by all clients.
Using OnClose may cause OpenAs to be ignored; if the client platform cannot
support both selected values together, OnClose takes precedence.
To call an enum, you call its parent class, name, and property. For example,
CardService.OpenAs.FULL_SIZE.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-11-01 UTC."],[[["`OpenAs` is an enum used to specify how a URL should be opened by the client, either as a full-size window or an overlay."],["While `FULL_SIZE` is supported by all clients, `OVERLAY` support depends on the client platform and might be ignored."],["Using `OnClose` may take precedence over `OpenAs`, potentially causing the chosen opening method to be disregarded if the client platform has limitations."],["To utilize this enum in your code, use the syntax: `CardService.OpenAs.FULL_SIZE` or `CardService.OpenAs.OVERLAY`."]]],[]]