Repository.XFRACAS.GetAllXFRACASEntities: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) mNo edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<onlyinclude>Gets | <onlyinclude>Gets an array of '''[[NameIdPair Class|NameIDPair]]''' objects that represents the name and ID pair of the XFRACAS entities in the database.</onlyinclude> | ||
== Syntax == | == Syntax == | ||
Line 16: | Line 16: | ||
{{APIComment|'Get a list of all XFRACAS entities.}} | {{APIComment|'Get a list of all XFRACAS entities.}} | ||
{{APIPrefix|Dim}} ListofEntities() {{APIPrefix|As}} NameIDPair | |||
ListOfEntities = MyRepository.XFRACAS.GetAllXfracasEntities() | |||
{{APIComment|'Output sample: Display the number of elements in the array.}} | {{APIComment|'Output sample: Display the number of elements in the array.}} | ||
{{APIPrefix|Dim}} NumberofElements {{APIPrefix|As}} Integer | |||
NumberofElements = UBound(ListofEntities) - LBound(ListofEntities) + 1 | |||
MsgBox (NumberofElements) |
Revision as of 19:12, 9 June 2016
Member of: SynthesisAPI.Repository
Gets an array of NameIDPair objects that represents the name and ID pair of the XFRACAS entities in the database.
Syntax
.XFRACAS.GetAllXfracasEntities()
Example
VB.NET 'Connect to a Synthesis enterprise repository. Dim MyRepository As New Repository MyRepository.ConnectToSQLRepository("MyServer", "MyDatabase") 'Get a list of all XFRACAS entities. Dim ListofEntities() As NameIDPair ListOfEntities = MyRepository.XFRACAS.GetAllXfracasEntities() 'Output sample: Display the number of elements in the array. Dim NumberofElements As Integer NumberofElements = UBound(ListofEntities) - LBound(ListofEntities) + 1 MsgBox (NumberofElements)