SAapi Object : GetProjectExtendedData Method |
If the schema (database tables) is returned you can use the following constants or their values:
If the project version and language is returned you can use the following constants or their values:
Visual Basic |
---|
Public Function GetProjectExtendedData( _ ByVal DomainName As String, _ ByVal ProjectName As String, _ ByVal GetSchema As Integer, _ ByVal GetVersion As Integer _ ) As String |
If the schema (database tables) is returned you can use the following constants or their values:
If the project version and language is returned you can use the following constants or their values:
On success, returns an XML string containing the project properties.
The extended data is optional and returns only if selected by the user.
If version is selected, the following fields are displayed:
If schema is selected, the following fields are displayed:
Private Sub GetProjectExtendedData() ' The following example gets the project, properties, ' table schema, project version, and language. Dim sDomainName As String Dim sProjectName As String Dim sReply As String On Error GoTo err sDomainName = "MyDomain" sProjectName = "MyProject" sReply = m_SAClient.GetProjectExtendedData _ (sDomainName, sProjectName, SA_TRUE, SA_TRUE) MsgBox sReply Exit Sub err: MsgBox "Program failed:" + err.Description End Sub