struct EE::UI::UIHTMLWidgetGridState

#include <uihtmlwidget.hpp>

struct UIHTMLWidgetGridState {
    // fields

    std::string templateRows { "none" };
    std::string templateColumns { "none" };
    std::string templateAreas { "none" };
    std::string autoRows { "auto" };
    std::string autoColumns { "auto" };
    CSSGridAutoFlow autoFlow { CSSGridAutoFlow::Row };
    bool autoFlowDense { false };
    std::string rowStart { "auto" };
    std::string rowEnd { "auto" };
    std::string columnStart { "auto" };
    std::string columnEnd { "auto" };
    std::string area { "auto" };
    CSSJustifyItems justifyItems { CSSJustifyItems::Normal };
    CSSJustifySelf justifySelf { CSSJustifySelf::Auto };
};