ヒント位置が開始にあるかどうかを取得または設定します。
デフォルト値は false
です。
@ViewChild('hint', {read: IgxHintDirective})
public igxHint: IgxHintDirective;
this.igxHint.isPositionStart = true;
let isHintPositionStart = this.igxHint.isPositionStart;
ヒントの位置を取得します。
@ViewChild('hint', {read: IgxHintDirective})
public igxHint: IgxHintDirective;
let hintPosition = this.igxHint.position;
ヒントの位置を設定します。
<igx-input-group>
<input igxInput type="text"/>
<igx-hint #hint [position]="'start'">IgxHint displayed at the start</igx-hint>
</igx-input-group>
ヒント位置が終了にあるかどうかを取得または設定します。 デフォルト値は
false
です。