共用方式為


AudioFileInputNode.LoopCount 屬性

定義

取得或設定音訊檔案輸入節點的迴圈計數。

public:
 property IReference<int> ^ LoopCount { IReference<int> ^ get(); void set(IReference<int> ^ value); };
IReference<int> LoopCount();

void LoopCount(IReference<int> value);
public System.Nullable<int> LoopCount { get; set; }
var iReference = audioFileInputNode.loopCount;
audioFileInputNode.loopCount = iReference;
Public Property LoopCount As Nullable(Of Integer)

屬性值

代表迴圈計數之整數的參考。

備註

LoopCount屬性會指定節點要回到StartTime的次數,如果未設定StartTime,則為檔案的開頭,然後重新執行檔案的內容。 此值不包含檔案的初始播放,因此使用預設值 0 會導致檔案播放一次,而將值設定為 5 會導致檔案總播放 6 次。 將此值設定為 null 會導致檔案無限期地迴圈。 若要中斷無限迴圈,請將 LoopCount 設定回 0。

適用於