メンバーの次の兄弟を戻します。
構文
EsbOtlGetNextSibling ( hOutline, hMember, phMember ) ByVal hOutline As Long ByVal hMember As Long phMember As Long
パラメータ | 説明 |
---|---|
hOutline |
アウトラインのコンテキスト・ハンドル。 |
hMember |
兄弟を取得するメンバーのハンドル。 |
phMember |
hMemberパラメータの兄弟のハンドルの戻り変数。 |
備考
次の兄弟がない場合、phMemberはESB_NULLに設定され、呼び出しは0を戻します。
戻り値
成功の場合、0が戻されます。
例
Declare Function EsbOtlGetNextSibling Lib "ESBOTLN" (ByVal hOutline As Long, ByVal hMember As Long, phMember As Long) As Long Sub ESB_OtlGetNextSibling() Dim sts As Long Dim Object As ESB_OBJDEF_T Dim hOutline As Long Dim hChild As Long Dim hNextSibling 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", hChild) End If If sts = 0 And hChild <> 0 Then sts = EsbOtlGetNextSibling(hOutline, hChild, hNextSibling) End If End Sub
関連トピック