EsbGetMemberInfo() gets a structure containing information about a specific member in the active database outline.
EsbGetMemberInfo (hCtx, MbrName, MbrInfo)
ByVal hCtx As Long ByVal MbrName As String MbrInfo As ESB_MEMBERINFO_T
hCtx | Essbase VB API context handle. |
MbrName | Member name. |
MbrInfo | Buffer to receive a member information structure. |
Attributes:
Declare Function EsbGetMemberInfo Lib "ESBAPIW" (ByVal hCtx As Long, ByVal MbrName As String, MbrInfo As ESB_MEMBERINFO_T) As Long Sub ESB_GetMemberInfo () Dim sts As Long Dim MbrName As String Dim MbrInfo As ESB_MEMBERINFO_T MbrName = "Year" '************************** ' Get Member Info structure '************************** sts = EsbGetMemberInfo (hCtx, MbrName, MbrInfo) End SubEsbCheckMemberName()