Class ImeSetCompositionCommandSettings
This method sets the current candidate text for IME. Use imeCommitComposition to commit the final text. Use imeSetComposition with empty string as text to cancel composition.
public sealed class ImeSetCompositionCommandSettings : ICommand
- Inheritance
-
ImeSetCompositionCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
ReplacementEnd
replacement end
[JsonPropertyName("replacementEnd")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ReplacementEnd { get; set; }
Property Value
- long?
ReplacementStart
replacement start
[JsonPropertyName("replacementStart")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ReplacementStart { get; set; }
Property Value
- long?
SelectionEnd
selection end
[JsonPropertyName("selectionEnd")]
public long SelectionEnd { get; set; }
Property Value
SelectionStart
selection start
[JsonPropertyName("selectionStart")]
public long SelectionStart { get; set; }
Property Value
Text
The text to insert
[JsonPropertyName("text")]
public string Text { get; set; }