Bitmovin Player React Native SDK - v1.25.0
    Preparing search index...

    Type Alias SubtitleCueLayoutLine

    The line field of a SubtitleCueLayout.

    { value: number; unit: 'percent' } places the cue as a percentage of the viewport. { value: number; unit: 'line' } places the cue by counting rendered text-line slots. When omitted, the underlying subtitle renderer determines line placement automatically.

    type SubtitleCueLayoutLine = {
        unit: "line" | "percent";
        value: number;
    }
    Index

    Properties

    Properties

    unit: "line" | "percent"
    value: number