Click or drag to resize
XDL

XVideoChannelSeek(Double) Method

동영상 파일의 경우 시간을 통해 Play할 위치를 찾는다.

Namespace: Pixoneer.NXDL.NXVideo
Assembly: NXVideo (in NXVideo.dll) Version: 3.0.0.4
Syntax
C#
public bool Seek(
	double sec
)

Parameters

sec  Double
시간(sec).

Return Value

Boolean
성공이면 true, 실패면 false를 리턴
Example
C#
// 10s forward
channel.Seek(channel.CurrentStreamTime + 10.0);
See Also