5 references to GetBounds
System.Private.Windows.Core (5)
Windows\Win32\System\Com\SafeArrayScope.cs (1)
228public int Length => (int)Value->GetBounds().cElements;
Windows\Win32\System\Variant\VARIANT.cs (4)
672if (psa->cDims == 1 && psa->GetBounds().lLbound == 0) 675return Array.CreateInstance(elementType, (int)psa->GetBounds().cElements); 685lengths[counter] = (int)psa->GetBounds(i).cElements; 686bounds[counter] = psa->GetBounds(i).lLbound;