다음을 통해 공유


SrgsItem.SetRepeat 메서드

정의

항목의 반복 횟수를 설정합니다.

오버로드

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보다 큽니다.

설명

이 메서드는 MaxRepeatMinRepeat 속성을 의 값으로 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가 0보다 작거나 255보다 큰 경우

maxRepeat가 0보다 작거나 255보다 큰 경우

minRepeatmaxRepeat보다 큰 경우

추가 정보

적용 대상