DefaultLanguage

This read-only property returns the language used as default.

Syntax

DefaultLanguage as String

Sample Code

Private Sub Document_FocusChanged(pWorkdoc as SCBCdrPROJLib.SCBCdrWorkdoc, ByVal Reason as SCBCdrPROJLib.CdrFocusChangeReason, ByVal OldFieldIndex as Long, pNewFieldIndex as Long)
'Set the table column to be invisible, check that the verifier form hasn’t been loaded yet.
   If Reason=CdrBeforeFormLoaded Then
      'The Table Setting to use to set table properties.
      Dim theTableSettings as SCBCdrBrainwareTableEngineLib.SCBCdrTableSettings
      Dim theAnalysisSettings as Object
      Project.AllClasses.ItemByName("Invoices").GetFieldAnalysisSettings("Table", Project.DefaultLanguage, theAnalysisSettings)	'Get the table settings for the TABLE field.
      Set theTableSettings = theAnalysisSettings
      theTableSettings.ColumnVisible(2) = True 'Set the Column visible to True to show, False to hide.
   End If
End Sub