Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
ApriCome
Un enum che specifica come aprire un URL.
Il client può aprire un URL come finestra a grandezza naturale (se si tratta del frame utilizzato dal client) o come overlay (ad esempio un popup). L'implementazione dipende dalle funzionalità della piattaforma client e il valore selezionato potrebbe essere ignorato se il client non lo supporta. FULL_SIZE è supportato da tutti i client.
L'utilizzo di OnClose potrebbe causare l'ignoramento di OpenAs. Se la piattaforma client non supporta entrambi i valori selezionati contemporaneamente, OnClose ha la precedenza.
Per chiamare un enum, devi chiamare la relativa classe, il nome e la proprietà di base. Ad esempio,
CardService.OpenAs.FULL_SIZE.
Proprietà
Proprietà
Tipo
Descrizione
FULL_SIZE
Enum
Apri in una finestra o scheda completa. Predefinita.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2024-12-03 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`."]]],[]]