ListView.draw C# (CSharp) Method

draw() protected method

protected draw ( ) : void
return void
    protected override void draw()
    {
        background(128);

        uiColor(color(0), color(100, 200, 100));
        uiTextAlign(LEFT);

        layer2D();
        noRecycle();
        listView(list, 10, 10, width - 10 * 2, height - 10 * 2, 20);
        recycle();
    }