SafeArrayGetLBound function oleaut32

int SafeArrayGetLBound(
  1. Pointer<SAFEARRAY> psa,
  2. int nDim,
  3. Pointer<Int32> plLbound
)

Gets the lower bound for any dimension of the specified safe array.

HRESULT SafeArrayGetLBound(
  [in]  SAFEARRAY *psa,
  [in]  UINT      nDim,
  [out] LONG      *plLbound
);

Implementation

int SafeArrayGetLBound(
  Pointer<SAFEARRAY> psa,
  int nDim,
  Pointer<Int32> plLbound,
) => _SafeArrayGetLBound(psa, nDim, plLbound);