CLanguage.SetLanguage: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:




<onlyinclude>Sets the language of the API library.</onlyinclude>
<onlyinclude>Sets the language of the API library. (VB.NET only)</onlyinclude>


==Syntax==
==Syntax==
Line 9: Line 9:
====Parameters====
====Parameters====
''Language''
''Language''
:Required. The language for the API library. Can be any [[Language_Enumeration|Language]] enumeration constant.
:Required. The language for the API library. Can be any [[Language_Enumeration|Language]] constant.




Line 15: Line 15:
   '''VB.NET'''
   '''VB.NET'''
   
   
  {{APIComment|'Set the language to English}}
  {{APIComment|'Set the language to Portuguese}}
   SynthesisAPI.SetLanguage(SynthesisAPI.Language.English)
   SynthesisAPI.SetLanguage(SynthesisAPI.Language.Portuguese)

Revision as of 16:48, 16 October 2015

APIWiki.png


Member of: SynthesisAPI


Sets the language of the API library. (VB.NET only)

Syntax

SynthesisAPI.SetLanguage(Language)

Parameters

Language

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


Example

 VB.NET

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