SrgsItem.SetRepeat 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
设置项的重复计数。
重载
SetRepeat(Int32) |
设置 SrgsItem 的内容必须被朗读的次数。 |
SetRepeat(Int32, Int32) |
设置项可被朗读的最小次数和最大次数。 |
SetRepeat(Int32)
- Source:
- SrgsItem.cs
- Source:
- SrgsItem.cs
- Source:
- 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)
- Source:
- SrgsItem.cs
- Source:
- SrgsItem.cs
- Source:
- 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
。