SetCandidateWindowPropertiesParametersProperties constructor
SetCandidateWindowPropertiesParametersProperties({})
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,
);