EsbDeleteGroup

既存のグループを削除します。

構文

            EsbDeleteGroup
             (
            hCtx, GrName
            )
ByVal 
            hCtx
                As Long
ByVal 
            GrpName
             As String
         
パラメータ説明

hCtx

VB APIコンテキスト・ハンドル。

GrpName

削除するグループの名前。

戻り値

なし。

アクセス

この関数を使用するには、ログインしたサーバーに対して、呼出し元がユーザーの作成/削除権限(ESB_PRIV_USERCREATE)を持っている必要があります。

         Declare Function EsbDeleteGroup Lib "ESBAPIN" (ByVal hCtx As Long, ByVal GroupName As String) As Long

Sub ESB_DeleteGroup ()
   Dim sts As Long
   Dim GroupName As String   GroupName = "PowerUsers"   '*************
   ' Delete Group
   '*************
   sts = EsbDeleteGroup (hCtx, GroupName) 
End Sub
      

関連トピック