EsbPartitionGetAreaCellCount

指定したスライス文字列内のセルの数を戻します。

構文

            EsbPartitionGetAreaCellCount
             (
            hCtx
            , 
            pszSlice
            , 
            pdCount
            )
ByVal 
            hCtx
                 As Long
ByVal 
            pszSlice
             As String
      
            pdCount
              As Double
         
パラメータ説明

hCtx

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

pszSlice

確認対象の入力スライス定義。

pdCount

ここにセル数が戻されます。

戻り値

正常終了の場合は0が戻され、失敗した場合はエラー・コードが戻されます。

         Public Sub ESB_PartitionGetAreaCellItems()
   Dim Slice As String
   Dim CellItems As Double
   
   Slice = "@Idescendants(Market)"
   
   sts = EsbPartitionGetAreaCellCount(hCtx, Slice, CellItems)
   
   If sts = 0 Then MsgBox Items
End Sub
      

関連トピック