BlueCielo Meridian Enterprise 2018 VBScript API Reference
AIMS_Properties function
Invoked when a Meridian Explorer detail page is shown that has the Enable feedback functionality option enabled.
Syntax
Function AIMS_Properties()
Parameters
This function accepts no parameters.
Remarks
Use this method to work with the feedback page property information as demonstrated in the following example.
Example
Function AIMS_Properties()
' For each property, return its caption and value in an array
p1 = Array("Asset description", Document.Area1)
p2 = Array("My name", "Joe Engineer")
'Return the array of properties
AIMS_Properties = Array(p1, p2)
End Function