CLanguage.SetLanguage

From ReliaWiki
Revision as of 22:10, 28 October 2015 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI10


Sets the API's display language. Errors and warnings returned by the Synthesis repository to the API will be displayed in the specified language. (VB.NET only)

Syntax

SynthesisAPI.SetLanguage(Language)

Parameters

Language

Required. The display language. Can be any Language constant.


Example

To demonstrate the functionality, the following example deliberately returns an error message in Portuguese.

 VB.NET

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

 'The following code triggers the Synthesis repository to return an error message. 
  Dim MyRepository As New Repository
  Dim m As New cModel

  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")
  m = MyRepository.Model.GetModel(47)