Difference between revisions of "ImGui.Core:showFontSelector"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui<br/> === Description === Adds a style selector block (not a window), essentially a combo listing t...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Adds a style selector block (not a window), essentially a combo listing the default styles.
 
Adds a style selector block (not a window), essentially a combo listing the default styles.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
ImGui:showFontSelector(fontselector)
 
ImGui:showFontSelector(fontselector)
</source>
+
</syntaxhighlight>
  
''font'' can be any of the following:
+
''fontselector'' can be any of the following:
 
*ImGui.***
 
*ImGui.***
  
Line 16: Line 16:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
</source>
+
</syntaxhighlight>
  
 
{{ImGui}}
 
{{ImGui}}

Latest revision as of 15:29, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui

Description

Adds a style selector block (not a window), essentially a combo listing the default styles.

ImGui:showFontSelector(fontselector)

fontselector can be any of the following:

  • ImGui.***

Parameters

fontselector: (string) any of the above selector

Example