Class IgxTextSelectionDirective

コンストラクター

プロパティ

アクセサー

メソッド

コンストラクター

プロパティ

selected: boolean = true

入力要素がディレクティブによって選択可能かどうかを決定します。

<!--set-->
<input
type="text"
id="firstName"
[igxTextSelection]="true">
</input>

<input
type="text"
id="lastName"
igxTextSelection
[selected]="true">
</input>

アクセサー

  • get nativeElement(): any
  • ディレクティブが適用される要素の nativeElement を返します。

    <input
    type="text"
    id="firstName"
    igxTextSelection>
    </input>
    @ViewChild('firstName',
    {read: IgxTextSelectionDirective})
    public inputElement: IgxTextSelectionDirective;

    public getNativeElement() {
    return this.inputElement.nativeElement;
    }

    返却 any

メソッド

  • 選択可能としてマークされる場合、要素の選択をトリガーします。

    <input
    type="text"
    id="firstName"
    igxTextSelection>
    </input>
    @ViewChild('firstName',
    {read: IgxTextSelectionDirective})
    public inputElement: IgxTextSelectionDirective;

    public triggerElementSelection() {
    this.inputElement.trigger();
    }

    返却 void