Question
Where is the documentation for UXP scripting dialogs?
There are example scripts that come with InDesign that create dialogs, but I can't find any documentation on the methods and members available when creating them. You see stuff like
myDialog = app.dialogs.add({ name: "DifFest" });
// Add a dialog column.
myDialogColumn = myDialog.dialogColumns.add();
borderPanel = myDialogColumn.borderPanels.add();
Where is the reference material that tells us what's available?
