GuiListViewEx method
int
GuiListViewEx(
- RectangleD bounds,
- MemoryPointer<
RPointer< text,RChar> > - int count,
- MemoryPointer<
RInt> scrollIndex, - MemoryPointer<
RInt> active, - 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(),
);