Class StopEventArgs
Video Edit SDK stop event args.
Inherited Members
Namespace: VisioForge.Core.Types.Events
Assembly: VisioForge.Core.dll
Syntax
public class StopEventArgs : EventArgs
Constructors
StopEventArgs()
Initializes a new instance of the StopEventArgs class.
Declaration
public StopEventArgs()
StopEventArgs(bool)
Initializes a new instance of the StopEventArgs class.
Declaration
public StopEventArgs(bool successful)
Parameters
Type | Name | Description |
---|---|---|
bool | successful | Successful status. |
StopEventArgs(bool, TimeSpan)
Initializes a new instance of the StopEventArgs class.
Declaration
public StopEventArgs(bool successful, TimeSpan position)
Parameters
Type | Name | Description |
---|---|---|
bool | successful | Successful status. |
TimeSpan | position | Current position. |
StopEventArgs(TimeSpan)
Initializes a new instance of the StopEventArgs class.
Declaration
public StopEventArgs(TimeSpan position)
Parameters
Type | Name | Description |
---|---|---|
TimeSpan | position | Current position. |
Properties
Position
Gets current position. Used in Media Player SDK.
Declaration
public TimeSpan Position { get; }
Property Value
Type | Description |
---|---|
TimeSpan |
Successful
Gets a value indicating whether status is successful. Used in Video Edit SDK.
Declaration
public bool Successful { get; }
Property Value
Type | Description |
---|---|
bool |