CLanguage.SetLanguage: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|Global_Common| }}  
{{Template:API}}{{Template:APIBreadcrumbClass}}
{{Template:Common Class.Cmt}}


== Methods ==
*[[Common.SetLanguage|SetLanguage( Language )]] {{APIComment|{{Template:Common.SetLanguage.Cmt}}}}


== Usage Example ==
<onlyinclude>Sets the language of the API library.</onlyinclude>
<div style="margin-right: 150px;">
 
==Syntax==
'''SynthesisAPI.SetLanguage'''(''Language'')
 
====Parameters====
''Language''
:The language for the API library. Can be any [[Language_Enumeration|Language]] enumeration constant.
 
 
==Example ==
  '''VB.NET'''
  {{APIComment|'Set the language to English}}
  {{APIComment|'Set the language to English}}
   SynthesisAPI.SetLanguage(SynthesisAPI.Language.English)
   SynthesisAPI.SetLanguage(SynthesisAPI.Language.English)
</div>

Revision as of 18:33, 7 August 2015

APIWiki.png


Member of: SynthesisAPI


Sets the language of the API library.

Syntax

SynthesisAPI.SetLanguage(Language)

Parameters

Language

The language for the API library. Can be any Language enumeration constant.


Example

 VB.NET

 'Set the language to English 
 SynthesisAPI.SetLanguage(SynthesisAPI.Language.English)