PCUI API Reference - v6.1.3
    Preparing search index...

    Interface IFlexArgs

    The interface for flex-related CSS properties available on elements. These properties do not themselves enable display: flex; flex layout is configured separately (for example via Container#flex).

    interface IFlexArgs {
        alignItems?: string;
        alignSelf?: string;
        flexBasis?: string | number;
        flexDirection?: string;
        flexGrow?: string | number;
        flexShrink?: string | number;
        flexWrap?: string;
        justifyContent?: string;
        justifySelf?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alignItems?: string

    Sets the element's alignItems CSS property.

    alignSelf?: string

    Sets the element's alignSelf CSS property.

    flexBasis?: string | number

    Sets the element's flexBasis CSS property.

    flexDirection?: string

    Sets the element's flexDirection CSS property.

    flexGrow?: string | number

    Sets the element's flexGrow CSS property.

    flexShrink?: string | number

    Sets the element's flexShrink CSS property.

    flexWrap?: string

    Sets the element's flexWrap CSS property.

    justifyContent?: string

    Sets the element's justifyContent CSS property.

    justifySelf?: string

    Sets the element's justifySelf CSS property.