SrgsItem.SetRepeat 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定項目的重複計數。
多載
SetRepeat(Int32) |
設定必須說出 SrgsItem 內容的次數。 |
SetRepeat(Int32, Int32) |
設定可以讀出項目的最小次數和最大數目。 |
SetRepeat(Int32)
- 來源:
- 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
設定可以讀出項目的最小次數和最大數目。
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
。