你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CallCompositeOptions type

CallComposite的可选功能。

type CallCompositeOptions = {
  branding?: {
    backgroundImage?: { url: string }
    logo?: { alt?: string; shape?: "unset" | "circle"; url: string }
  }
  callControls?: boolean | CallControlOptions
  captionsBanner?: { height: "full" | "default" }
  disableAutoShowDtmfDialer?: boolean | DtmfDialPadOptions
  errorBar?: boolean
  galleryOptions?: {
    layout?: VideoGalleryLayout
    localScreenShareView?: LocalScreenShareView
  }
  joinCallOptions?: { microphoneCheck?: "requireMicrophoneAvailable" | "skip" }
  localVideoTile?: boolean | LocalVideoTileOptions
  notificationOptions?: NotificationOptions_2
  remoteVideoTileMenuOptions?: RemoteVideoTileMenuOptions
  spotlight?: { hideSpotlightButtons?: boolean }
  surveyOptions?: {
    disableSurvey?: boolean
    onSurveyClosed?: (
      surveyState: "sent" | "skipped" | "error",
      surveyError?: string
    ) => void
    onSurveySubmitted?: (
      callId: string,
      surveyId: string,
      submittedSurvey: CallSurvey,
      improvementSuggestions: CallSurveyImprovementSuggestions
    ) => Promise<void>
  }
  videoTilesOptions?: VideoTilesOptions
}