Show
Overview
Section titled “Overview”Makes a hidden PrismaView visible. This method sets the view’s visibility flag to allow it to be rendered in the next frame, enabling you to show previously hidden UI elements without recreating them.
Syntax
Section titled “Syntax”void Show(PrismaView view);Parameters
Section titled “Parameters”view (required)
Section titled “view (required)”- Type:
PrismaView - Description: The
PrismaViewto make visible
Return Value
Section titled “Return Value”This method returns void.
Usage Examples
Section titled “Usage Examples”// Show a previously hidden viewPrismaUI->Show(view);Behavior Details
Section titled “Behavior Details”- Sets the
isHiddenflag tofalse - View begins rendering in the next frame
- If view is already visible, operation is silently ignored
- Does not affect focus state - use
Focusseparately if needed
Best Practices
Section titled “Best Practices”- Pair with Hide: Use
ShowandHideas complementary operations - Check State: Use
IsHiddento check visibility before showing - Focus Management: Call
Focusseparately if input interaction is needed - Performance: Prefer show/hide over destroy/create for temporary UI