SrgsItem.SetRepeat メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
項目の繰り返し数を設定します。
オーバーロード
| 名前 | 説明 |
|---|---|
| SetRepeat(Int32) |
SrgsItemの内容を読み上げる必要がある回数を設定します。 |
| SetRepeat(Int32, Int32) |
アイテムを読み上げることができる最小回数と最大回数を設定します。 |
SetRepeat(Int32)
- ソース:
- SrgsItem.cs
- ソース:
- SrgsItem.cs
- ソース:
- SrgsItem.cs
- ソース:
- SrgsItem.cs
SrgsItemの内容を読み上げる必要がある回数を設定します。
public:
void SetRepeat(int count);
public void SetRepeat(int count);
member this.SetRepeat : int -> unit
Public Sub SetRepeat (count As Integer)
パラメーター
- count
- Int32
項目を読み上げる必要がある回数。
例外
count が 0 未満または 255 より大きい。
注釈
このメソッドは、 MaxRepeat プロパティと MinRepeat プロパティを count の値に設定します。
適用対象
SetRepeat(Int32, Int32)
- ソース:
- SrgsItem.cs
- ソース:
- SrgsItem.cs
- ソース:
- SrgsItem.cs
- ソース:
- SrgsItem.cs
アイテムを読み上げることができる最小回数と最大回数を設定します。
public:
void SetRepeat(int minRepeat, int maxRepeat);
public void SetRepeat(int minRepeat, int maxRepeat);
member this.SetRepeat : int * int -> unit
Public Sub SetRepeat (minRepeat As Integer, maxRepeat As Integer)
パラメーター
- minRepeat
- Int32
アイテムを読み上げる必要がある最小回数。
- maxRepeat
- Int32
アイテムを読み上げることができる最大回数。
例外
minRepeat が maxRepeatより大きい。