Preparing search index...

    The options for vertical alignment, for example when using Editor.Components.BaseMeshVisual

        const alignments = [
    Editor.Alignment.Vertical.Top,
    Editor.Alignment.Vertical.Center,
    Editor.Alignment.Vertical.Bottom,
    ];

    for (const alignment of alignments) {
    let label: string;
    switch (alignment) {
    case Editor.Alignment.Vertical.Top: label = 'Top'; break;
    case Editor.Alignment.Vertical.Center: label = 'Center'; break;
    case Editor.Alignment.Vertical.Bottom: label = 'Bottom'; break;
    default: label = 'Unknown';
    }
    console.log(`Vertical alignment value ${alignment} => ${label}`);
    }
    Index

    Enumeration Members

    Enumeration Members

    Bottom: number

    Aligns content to the bottom.

    Center: number

    Aligns content to the center vertically.

    Top: number

    Aligns content to the top.