extractAttributes() Method

Table of Contents

  1. Function
  2. Syntax
  3. Parameters
  4. Return Value
  5. Sample Code
  6. Remarks
  7. Possible Errors
  8. Alternate Method
  9. Related Methods

Function

  • Returns a list of employee attributes

Syntax

  • TAeAttribute[] = AeXMLBridge.extractAttributes();

Parameters

  • None

Return Value

Sample Code

C#

1
2
3
4
5
6
7
8
try
{
TAeAttribute[] attributes = ws.extractAttributes();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
Try
Dim attributes As TAeAttribute() = ws.extractAttributes()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • None

Alternate Methods

  • None

appendEmpAttribsAssignByIDnum
extractEmpAttribsAssignsByIDnum
getEmptyEmpAttribsAssign
removeEmpAttribsAssignByUniqueID

Back to Top