メンバーの親を戻します。
構文
EsbOtlGetParent ( hOutline, hMember, phMember ) ByVal hOutline As Long ByVal hMember As Long phMember As Long
パラメータ | 説明 |
---|---|
hOutline |
アウトラインのコンテキスト・ハンドル。 |
hMember |
親を取得するメンバーのハンドル。 |
phMember |
hMemberパラメータの親のメンバーのハンドルに対する戻り変数。 |
備考
親がない場合、phMemberはESB_NULLに設定され、呼出しは0を戻します。(hMemberは次元です。)
戻り値
成功の場合、0が戻されます。
例
Declare Function EsbOtlGetParent Lib "ESBOTLN" (ByVal hOutline As Long, ByVal hMember As Long, phMember As Long) As Long Sub ESB_OtlGetParent() Dim sts As Long Dim Object As ESB_OBJDEF_T Dim hOutline As Long Dim hMemberProfit As Long Dim hParent As Long Object.hCtx = hCtx Object.Type = ESB_OBJTYPE_OUTLINE Object.AppName = "Sample" Object.DbName = "Basic" Object.FileName = "Basic" sts = EsbOtlOpenOutline(hCtx, Object, ESB_YES, ESB_YES, hOutline) If sts = 0 Then sts = EsbOtlFindMember(hOutline, "Profit", hMemberProfit) End If If sts = 0 And hMemberProfit <> 0 Then sts = EsbOtlGetParent(hOutline, hMemberProfit, hParent) End If End Sub
関連トピック