SetCandidateWindowPropertiesParametersProperties constructor

SetCandidateWindowPropertiesParametersProperties({
  1. bool? visible,
  2. bool? cursorVisible,
  3. bool? vertical,
  4. int? pageSize,
  5. String? auxiliaryText,
  6. bool? auxiliaryTextVisible,
  7. int? totalCandidates,
  8. int? currentCandidateIndex,
  9. WindowPosition? windowPosition,
})

Implementation

SetCandidateWindowPropertiesParametersProperties({
  /// True to show the Candidate window, false to hide it.
  bool? visible,

  /// True to show the cursor, false to hide it.
  bool? cursorVisible,

  /// True if the candidate window should be rendered vertical, false to make
  /// it horizontal.
  bool? vertical,

  /// The number of candidates to display per page.
  int? pageSize,

  /// Text that is shown at the bottom of the candidate window.
  String? auxiliaryText,

  /// True to display the auxiliary text, false to hide it.
  bool? auxiliaryTextVisible,

  /// The total number of candidates for the candidate window.
  int? totalCandidates,

  /// The index of the current chosen candidate out of total candidates.
  int? currentCandidateIndex,

  /// Where to display the candidate window.
  WindowPosition? windowPosition,
}) : _wrapped = $js.SetCandidateWindowPropertiesParametersProperties(
        visible: visible,
        cursorVisible: cursorVisible,
        vertical: vertical,
        pageSize: pageSize,
        auxiliaryText: auxiliaryText,
        auxiliaryTextVisible: auxiliaryTextVisible,
        totalCandidates: totalCandidates,
        currentCandidateIndex: currentCandidateIndex,
        windowPosition: windowPosition?.toJS,
      );