|
|
Line 1: |
Line 1: |
| __NOTOC__
| |
|
| |
|
| '''To Do:'''
| |
| *Move this page to a new name: CLanguage.SetLanguage
| |
| :Reason for move: Moved page to consolidate information and improve docs, as per SYN-I-4864.
| |
|
| |
| *Then copy the contents below to the new page.
| |
|
| |
|
| |
| <hr>
| |
|
| |
|
| |
|
| |
|
| |
| <onlyinclude>Sets the language of the Synthesis API library. Messages returned by the Synthesis repository to the API will be displayed in the specified language.</onlyinclude>
| |
|
| |
| ==Syntax==
| |
|
| |
| '''.SetLanguage'''(''Language'')
| |
|
| |
| ====Parameters====
| |
| ''Language''
| |
| :Required. The display language. Can be any [[Language_Enumeration|Language]] constant.
| |
|
| |
|
| |
| ==Example ==
| |
| To demonstrate the method's functionality, the example deliberately returns an error message in Portuguese by connecting to a repository that doesn't exist.
| |
|
| |
| '''VBA'''
| |
|
| |
| {{APIComment|'Set the API's language to Portuguese}}
| |
| {{APIPrefix|Dim}} Lng {{APIPrefix|As New}} cLanguage
| |
| Lng.SetLanguage (Language_Portuguese)
| |
|
| |
| {{APIComment|'The following code will deliberately cause the connection to fail and return an error message.}}
| |
| {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
| |
| MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepositoryx122g3.rsr10"}})
| |
|
| |
| '''VB.NET'''
| |
|
| |
| {{APIComment|'Set the API's language to Portuguese}}
| |
| {{APIPrefix|Dim}} Lng {{APIPrefix|As New}} cLanguage
| |
| Lng.SetLanguage (Language.Portuguese)
| |
|
| |
| {{APIComment|'The following code will deliberately cause the connection to fail and return an error message.}}
| |
| {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
| |
| MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepositoryx122g3.rsr10"}})
| |