Difference between revisions of "ImGui.DrawList:getFont"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2020.9<br/> '''Class:''' ImGui.DrawList<br/> === Description === Gets the current window ImGui draw list font. <source lang="lua"...")
 
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Gets the current window ImGui draw list font.
 
Gets the current window ImGui draw list font.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(font) = ImGui.DrawList:getFont()
 
(font) = ImGui.DrawList:getFont()
 
</source>
 
</source>
Line 13: Line 13:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
</source>
 
</source>
  
 
{{ImGui.DrawList}}
 
{{ImGui.DrawList}}

Revision as of 15:28, 13 July 2023

Available since: Gideros 2020.9
Class: ImGui.DrawList

Description

Gets the current window ImGui draw list font. <syntaxhighlight lang="lua"> (font) = ImGui.DrawList:getFont() </source>

Return values

Returns (font) the draw list font

Example

<syntaxhighlight lang="lua"> </source>