GetText3DDimension: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Server|1.0}} {{FuncDescription|Gets the dimension of this text3d.}} {{FuncSyntax|GetText3DDimension(text3d)}} {{FuncParameters}} {{FuncParam|text3d|The text...")
 
 
(One intermediate revision by one other user not shown)
Line 11: Line 11:


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
print("Dimension of 3D Text: " .. GetText3DDimension(text3d))
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
*[[SetText3DDimension]]
*[[GetText3DDimension]]
*[[SetText3DPropertyValue]]
*[[GetText3DPropertyValue]]
*[[GetText3DCount]]
*[[GetAllText3D]]
*[[CreateText3D]]
*[[DestroyText3D]]
*[[IsValidText3D]]
*[[SetText3DAttached]]
*[[SetText3DVisibility]]
*[[SetText3DText]]

Latest revision as of 19:48, 27 May 2021

GetText3DDimension

Type: Function
Context: Server
Introduced: v1.0

Description

Gets the dimension of this text3d.

Syntax

GetText3DDimension(text3d)

Parameters

  • text3d
    The text3d identifier.

Return Value

  • Returns the dimension.

Example

print("Dimension of 3D Text: " .. GetText3DDimension(text3d))

See also