Accessibility (manage)

    Accessibility (manage)


    Article summary


    title: Accessibility

    version: 0.15.0
    layout: default
    sdk: manage

    # Accessibility

    Version Accessibility 0.0.0-unknown.0

    Table of Contents

    Overview

    undefined

    Types

    ClosedCaptionsSettings

    type ClosedCaptionsSettings = {
      enabled: boolean               // Whether or not closed-captions should be enabled by default
      styles: ClosedCaptionsStyles   // The default styles to use when displaying closed-captions
    }
    

    See also:

    ClosedCaptionsStyles


    VoiceGuidanceSettings

    type VoiceGuidanceSettings = {
      enabled: boolean              // Whether or not voice guidance should be enabled by default
      speed: VoiceSpeed
    }
    

    See also:

    number


    VoiceSpeed

    type VoiceSpeed = number
    

    ClosedCaptionsStyles

    The default styles to use when displaying closed-captions

    type ClosedCaptionsStyles = {
      fontFamily?: string
      fontSize?: number
      fontColor?: string
      fontEdge?: string
      fontEdgeColor?: string
      fontOpacity?: number
      backgroundColor?: string
      backgroundOpacity?: number
      textAlign?: string
      textAlignVertical?: string
      windowColor?: string
      windowOpacity?: number
    }
    

    FontFamily

    type FontFamily = string
    

    FontSize

    type FontSize = number
    

    Color

    type Color = string
    

    FontEdge

    type FontEdge = string
    

    Opacity

    type Opacity = number
    

    HorizontalAlignment

    type HorizontalAlignment = string
    

    VerticalAlignment

    type VerticalAlignment = string
    


    Was this article helpful?