GuiListViewEx method

  1. @override
int GuiListViewEx(
  1. RectangleD bounds,
  2. MemoryPointer<RPointer<RChar>> text,
  3. int count,
  4. MemoryPointer<RInt> scrollIndex,
  5. MemoryPointer<RInt> active,
  6. MemoryPointer<RInt> focus,
)
override

List View control, using text entries list and returning focus entry

Implementation

@override
int GuiListViewEx(
  RectangleD bounds,
  MemoryPointer<RPointer<RChar>> text,
  int count,
  MemoryPointer<RInt> scrollIndex,
  MemoryPointer<RInt> active,
  MemoryPointer<RInt> focus,
) => _ffi.GuiListViewEx(
  $.Rectangle$.Ref1(bounds).asNativePointer<RectangleC>().ref,
  text.asNativePointer(),
  count,
  scrollIndex.asNativePointer(),
  active.asNativePointer(),
  focus.asNativePointer(),
);