TimeSpan
Overview
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.System
- Ancestry: ValueType | TimeSpan
constructor protected (declared in ValueType)
constructor
TimeSpan()
init()
TimeSpan()
Sub New()
constructor(aDays: Int64; aHours: Int64; aMinutes: Int64; aSeconds: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds)
init(_ aDays: Int64, _ aHours: Int64, _ aMinutes: Int64, _ aSeconds: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds)
Sub New(aDays As Int64, aHours As Int64, aMinutes As Int64, aSeconds As Int64)
Parameters:
- aDays:
- aHours:
- aMinutes:
- aSeconds:
constructor(aDays: Int64; aHours: Int64; aMinutes: Int64; aSeconds: Int64; aMsec: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds, Int64 aMsec)
init(_ aDays: Int64, _ aHours: Int64, _ aMinutes: Int64, _ aSeconds: Int64, _ aMsec: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds, Int64 aMsec)
Sub New(aDays As Int64, aHours As Int64, aMinutes As Int64, aSeconds As Int64, aMsec As Int64)
Parameters:
- aDays:
- aHours:
- aMinutes:
- aSeconds:
- aMsec:
constructor(aHours: Int64; aMinutes: Int64; aSeconds: Int64)
TimeSpan(Int64 aHours, Int64 aMinutes, Int64 aSeconds)
init(_ aHours: Int64, _ aMinutes: Int64, _ aSeconds: Int64)
TimeSpan(Int64 aHours, Int64 aMinutes, Int64 aSeconds)
Sub New(aHours As Int64, aMinutes As Int64, aSeconds As Int64)
Parameters:
- aHours:
- aMinutes:
- aSeconds:
constructor (Int64)
constructor(aTotal: Int64)
TimeSpan(Int64 aTotal)
init(_ aTotal: Int64)
TimeSpan(Int64 aTotal)
Sub New(aTotal As Int64)
Parameters:
- aTotal:
method CompareTo(a: Object): Int32
Int32 CompareTo(Object a)
func CompareTo(_ a: Object) -> Int32
Int32 CompareTo(Object a)
Function CompareTo(a As Object) As Int32
Parameters:
- a:
method CompareTo(a: TimeSpan): Int32
Int32 CompareTo(TimeSpan a)
func CompareTo(_ a: TimeSpan) -> Int32
Int32 CompareTo(TimeSpan a)
Function CompareTo(a As TimeSpan) As Int32
Parameters:
- a:
Days
property Days: Int32 read;
Int32 Days { get; }
var Days: Int32 { get{} }
Int32 Days { __get; }
ReadOnly Property Days() As Int32
method Equals(aOther: Object): Boolean
Boolean Equals(Object aOther)
func Equals(_ aOther: Object) -> Boolean
Boolean Equals(Object aOther)
Function Equals(aOther As Object) As Boolean
Parameters:
- aOther:
method Equals(other: TimeSpan): Boolean
Boolean Equals(TimeSpan other)
func Equals(_ other: TimeSpan) -> Boolean
Boolean Equals(TimeSpan other)
Function Equals(other As TimeSpan) As Boolean
Parameters:
- other:
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
FromDays
class method FromDays(aValue: Double): TimeSpan
static TimeSpan FromDays(Double aValue)
static func FromDays(_ aValue: Double) -> TimeSpan
static TimeSpan FromDays(Double aValue)
Shared Function FromDays(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromHours
class method FromHours(aValue: Double): TimeSpan
static TimeSpan FromHours(Double aValue)
static func FromHours(_ aValue: Double) -> TimeSpan
static TimeSpan FromHours(Double aValue)
Shared Function FromHours(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromMilliseconds
class method FromMilliseconds(aValue: Double): TimeSpan
static TimeSpan FromMilliseconds(Double aValue)
static func FromMilliseconds(_ aValue: Double) -> TimeSpan
static TimeSpan FromMilliseconds(Double aValue)
Shared Function FromMilliseconds(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromMinutes
class method FromMinutes(aValue: Double): TimeSpan
static TimeSpan FromMinutes(Double aValue)
static func FromMinutes(_ aValue: Double) -> TimeSpan
static TimeSpan FromMinutes(Double aValue)
Shared Function FromMinutes(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromSeconds
class method FromSeconds(aValue: Double): TimeSpan
static TimeSpan FromSeconds(Double aValue)
static func FromSeconds(_ aValue: Double) -> TimeSpan
static TimeSpan FromSeconds(Double aValue)
Shared Function FromSeconds(aValue As Double) As TimeSpan
Parameters:
- aValue:
GetHashCode override virtual
method GetHashCode: Int32
Int32 GetHashCode()
func GetHashCode() -> Int32
Int32 GetHashCode()
Function GetHashCode() As Int32
GetType (declared in Object)
Returns the actual type of this class
method GetType: Type
Type GetType()
func GetType() -> Type
Type GetType()
Function GetType() As Type
Hours
property Hours: Int32 read;
Int32 Hours { get; }
var Hours: Int32 { get{} }
Int32 Hours { __get; }
ReadOnly Property Hours() As Int32
MaxValue
class var MaxValue: TimeSpan;
static TimeSpan MaxValue
static var MaxValue: TimeSpan
static TimeSpan MaxValue
Shared FIELD MaxValue() As TimeSpan
Milliseconds
property Milliseconds: Int32 read;
Int32 Milliseconds { get; }
var Milliseconds: Int32 { get{} }
Int32 Milliseconds { __get; }
ReadOnly Property Milliseconds() As Int32
MillisPerDay
const MillisPerDay: Int32 = 86400000
const Int32 MillisPerDay = 86400000
static let MillisPerDay: Int32 = 86400000
static final Int32 MillisPerDay = 86400000
Const MillisPerDay As Int32 = 86400000
MillisPerHour
const MillisPerHour: Int32 = 3600000
const Int32 MillisPerHour = 3600000
static let MillisPerHour: Int32 = 3600000
static final Int32 MillisPerHour = 3600000
Const MillisPerHour As Int32 = 3600000
MillisPerMinute
const MillisPerMinute: Int32 = 60000
const Int32 MillisPerMinute = 60000
static let MillisPerMinute: Int32 = 60000
static final Int32 MillisPerMinute = 60000
Const MillisPerMinute As Int32 = 60000
MillisPerSecond
const MillisPerSecond: Int32 = 1000
const Int32 MillisPerSecond = 1000
static let MillisPerSecond: Int32 = 1000
static final Int32 MillisPerSecond = 1000
Const MillisPerSecond As Int32 = 1000
Minutes
property Minutes: Int32 read;
Int32 Minutes { get; }
var Minutes: Int32 { get{} }
Int32 Minutes { __get; }
ReadOnly Property Minutes() As Int32
MinValue
class var MinValue: TimeSpan;
static TimeSpan MinValue
static var MinValue: TimeSpan
static TimeSpan MinValue
Shared FIELD MinValue() As TimeSpan
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
class method ReferenceEquals(a: Object; b: Object): Boolean
static Boolean ReferenceEquals(Object a, Object b)
static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean
static Boolean ReferenceEquals(Object a, Object b)
Shared Function ReferenceEquals(a As Object, b As Object) As Boolean
Parameters:
- a: left value
- b: right value
Seconds
property Seconds: Int32 read;
Int32 Seconds { get; }
var Seconds: Int32 { get{} }
Int32 Seconds { __get; }
ReadOnly Property Seconds() As Int32
Ticks
property Ticks: Int64 read;
Int64 Ticks { get; }
var Ticks: Int64 { get{} }
Int64 Ticks { __get; }
ReadOnly Property Ticks() As Int64
TicksPerDay
const TicksPerDay: Int64 = 864000000000
const Int64 TicksPerDay = 864000000000
static let TicksPerDay: Int64 = 864000000000
static final Int64 TicksPerDay = 864000000000
Const TicksPerDay As Int64 = 864000000000
TicksPerHour
const TicksPerHour: Int64 = 36000000000
const Int64 TicksPerHour = 36000000000
static let TicksPerHour: Int64 = 36000000000
static final Int64 TicksPerHour = 36000000000
Const TicksPerHour As Int64 = 36000000000
TicksPerMillisecond
const TicksPerMillisecond: Int64 = 10000
const Int64 TicksPerMillisecond = 10000
static let TicksPerMillisecond: Int64 = 10000
static final Int64 TicksPerMillisecond = 10000
Const TicksPerMillisecond As Int64 = 10000
TicksPerMinute
const TicksPerMinute: Int64 = 600000000
const Int64 TicksPerMinute = 600000000
static let TicksPerMinute: Int64 = 600000000
static final Int64 TicksPerMinute = 600000000
Const TicksPerMinute As Int64 = 600000000
TicksPerSecond
const TicksPerSecond: Int64 = 10000000
const Int64 TicksPerSecond = 10000000
static let TicksPerSecond: Int64 = 10000000
static final Int64 TicksPerSecond = 10000000
Const TicksPerSecond As Int64 = 10000000
ToString override virtual
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String
TotalDays
property TotalDays: Double read;
Double TotalDays { get; }
var TotalDays: Double { get{} }
Double TotalDays { __get; }
ReadOnly Property TotalDays() As Double
TotalHours
property TotalHours: Double read;
Double TotalHours { get; }
var TotalHours: Double { get{} }
Double TotalHours { __get; }
ReadOnly Property TotalHours() As Double
TotalMilliseconds
property TotalMilliseconds: Double read;
Double TotalMilliseconds { get; }
var TotalMilliseconds: Double { get{} }
Double TotalMilliseconds { __get; }
ReadOnly Property TotalMilliseconds() As Double
TotalMinutes
property TotalMinutes: Double read;
Double TotalMinutes { get; }
var TotalMinutes: Double { get{} }
Double TotalMinutes { __get; }
ReadOnly Property TotalMinutes() As Double
TotalSeconds
property TotalSeconds: Double read;
Double TotalSeconds { get; }
var TotalSeconds: Double { get{} }
Double TotalSeconds { __get; }
ReadOnly Property TotalSeconds() As Double
Zero
class var Zero: TimeSpan;
static TimeSpan Zero
static var Zero: TimeSpan
static TimeSpan Zero
Shared FIELD Zero() As TimeSpan
MillisPerDay
const MillisPerDay: Int32 = 86400000
const Int32 MillisPerDay = 86400000
static let MillisPerDay: Int32 = 86400000
static final Int32 MillisPerDay = 86400000
Const MillisPerDay As Int32 = 86400000
MillisPerHour
const MillisPerHour: Int32 = 3600000
const Int32 MillisPerHour = 3600000
static let MillisPerHour: Int32 = 3600000
static final Int32 MillisPerHour = 3600000
Const MillisPerHour As Int32 = 3600000
MillisPerMinute
const MillisPerMinute: Int32 = 60000
const Int32 MillisPerMinute = 60000
static let MillisPerMinute: Int32 = 60000
static final Int32 MillisPerMinute = 60000
Const MillisPerMinute As Int32 = 60000
MillisPerSecond
const MillisPerSecond: Int32 = 1000
const Int32 MillisPerSecond = 1000
static let MillisPerSecond: Int32 = 1000
static final Int32 MillisPerSecond = 1000
Const MillisPerSecond As Int32 = 1000
TicksPerDay
const TicksPerDay: Int64 = 864000000000
const Int64 TicksPerDay = 864000000000
static let TicksPerDay: Int64 = 864000000000
static final Int64 TicksPerDay = 864000000000
Const TicksPerDay As Int64 = 864000000000
TicksPerHour
const TicksPerHour: Int64 = 36000000000
const Int64 TicksPerHour = 36000000000
static let TicksPerHour: Int64 = 36000000000
static final Int64 TicksPerHour = 36000000000
Const TicksPerHour As Int64 = 36000000000
TicksPerMillisecond
const TicksPerMillisecond: Int64 = 10000
const Int64 TicksPerMillisecond = 10000
static let TicksPerMillisecond: Int64 = 10000
static final Int64 TicksPerMillisecond = 10000
Const TicksPerMillisecond As Int64 = 10000
TicksPerMinute
const TicksPerMinute: Int64 = 600000000
const Int64 TicksPerMinute = 600000000
static let TicksPerMinute: Int64 = 600000000
static final Int64 TicksPerMinute = 600000000
Const TicksPerMinute As Int64 = 600000000
TicksPerSecond
const TicksPerSecond: Int64 = 10000000
const Int64 TicksPerSecond = 10000000
static let TicksPerSecond: Int64 = 10000000
static final Int64 TicksPerSecond = 10000000
Const TicksPerSecond As Int64 = 10000000
MaxValue
class var MaxValue: TimeSpan;
static TimeSpan MaxValue
static var MaxValue: TimeSpan
static TimeSpan MaxValue
Shared FIELD MaxValue() As TimeSpan
MinValue
class var MinValue: TimeSpan;
static TimeSpan MinValue
static var MinValue: TimeSpan
static TimeSpan MinValue
Shared FIELD MinValue() As TimeSpan
Zero
class var Zero: TimeSpan;
static TimeSpan Zero
static var Zero: TimeSpan
static TimeSpan Zero
Shared FIELD Zero() As TimeSpan
Days
property Days: Int32 read;
Int32 Days { get; }
var Days: Int32 { get{} }
Int32 Days { __get; }
ReadOnly Property Days() As Int32
Hours
property Hours: Int32 read;
Int32 Hours { get; }
var Hours: Int32 { get{} }
Int32 Hours { __get; }
ReadOnly Property Hours() As Int32
Milliseconds
property Milliseconds: Int32 read;
Int32 Milliseconds { get; }
var Milliseconds: Int32 { get{} }
Int32 Milliseconds { __get; }
ReadOnly Property Milliseconds() As Int32
Minutes
property Minutes: Int32 read;
Int32 Minutes { get; }
var Minutes: Int32 { get{} }
Int32 Minutes { __get; }
ReadOnly Property Minutes() As Int32
Seconds
property Seconds: Int32 read;
Int32 Seconds { get; }
var Seconds: Int32 { get{} }
Int32 Seconds { __get; }
ReadOnly Property Seconds() As Int32
Ticks
property Ticks: Int64 read;
Int64 Ticks { get; }
var Ticks: Int64 { get{} }
Int64 Ticks { __get; }
ReadOnly Property Ticks() As Int64
TotalDays
property TotalDays: Double read;
Double TotalDays { get; }
var TotalDays: Double { get{} }
Double TotalDays { __get; }
ReadOnly Property TotalDays() As Double
TotalHours
property TotalHours: Double read;
Double TotalHours { get; }
var TotalHours: Double { get{} }
Double TotalHours { __get; }
ReadOnly Property TotalHours() As Double
TotalMilliseconds
property TotalMilliseconds: Double read;
Double TotalMilliseconds { get; }
var TotalMilliseconds: Double { get{} }
Double TotalMilliseconds { __get; }
ReadOnly Property TotalMilliseconds() As Double
TotalMinutes
property TotalMinutes: Double read;
Double TotalMinutes { get; }
var TotalMinutes: Double { get{} }
Double TotalMinutes { __get; }
ReadOnly Property TotalMinutes() As Double
TotalSeconds
property TotalSeconds: Double read;
Double TotalSeconds { get; }
var TotalSeconds: Double { get{} }
Double TotalSeconds { __get; }
ReadOnly Property TotalSeconds() As Double
FromDays
class method FromDays(aValue: Double): TimeSpan
static TimeSpan FromDays(Double aValue)
static func FromDays(_ aValue: Double) -> TimeSpan
static TimeSpan FromDays(Double aValue)
Shared Function FromDays(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromHours
class method FromHours(aValue: Double): TimeSpan
static TimeSpan FromHours(Double aValue)
static func FromHours(_ aValue: Double) -> TimeSpan
static TimeSpan FromHours(Double aValue)
Shared Function FromHours(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromMilliseconds
class method FromMilliseconds(aValue: Double): TimeSpan
static TimeSpan FromMilliseconds(Double aValue)
static func FromMilliseconds(_ aValue: Double) -> TimeSpan
static TimeSpan FromMilliseconds(Double aValue)
Shared Function FromMilliseconds(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromMinutes
class method FromMinutes(aValue: Double): TimeSpan
static TimeSpan FromMinutes(Double aValue)
static func FromMinutes(_ aValue: Double) -> TimeSpan
static TimeSpan FromMinutes(Double aValue)
Shared Function FromMinutes(aValue As Double) As TimeSpan
Parameters:
- aValue:
FromSeconds
class method FromSeconds(aValue: Double): TimeSpan
static TimeSpan FromSeconds(Double aValue)
static func FromSeconds(_ aValue: Double) -> TimeSpan
static TimeSpan FromSeconds(Double aValue)
Shared Function FromSeconds(aValue As Double) As TimeSpan
Parameters:
- aValue:
ReferenceEquals (declared in Object)
Compares two references for equivalence (even if they have an equals operator)
class method ReferenceEquals(a: Object; b: Object): Boolean
static Boolean ReferenceEquals(Object a, Object b)
static func ReferenceEquals(_ a: Object, _ b: Object) -> Boolean
static Boolean ReferenceEquals(Object a, Object b)
Shared Function ReferenceEquals(a As Object, b As Object) As Boolean
Parameters:
- a: left value
- b: right value
constructor protected (declared in ValueType)
constructor
TimeSpan()
init()
TimeSpan()
Sub New()
constructor(aDays: Int64; aHours: Int64; aMinutes: Int64; aSeconds: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds)
init(_ aDays: Int64, _ aHours: Int64, _ aMinutes: Int64, _ aSeconds: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds)
Sub New(aDays As Int64, aHours As Int64, aMinutes As Int64, aSeconds As Int64)
Parameters:
- aDays:
- aHours:
- aMinutes:
- aSeconds:
constructor(aDays: Int64; aHours: Int64; aMinutes: Int64; aSeconds: Int64; aMsec: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds, Int64 aMsec)
init(_ aDays: Int64, _ aHours: Int64, _ aMinutes: Int64, _ aSeconds: Int64, _ aMsec: Int64)
TimeSpan(Int64 aDays, Int64 aHours, Int64 aMinutes, Int64 aSeconds, Int64 aMsec)
Sub New(aDays As Int64, aHours As Int64, aMinutes As Int64, aSeconds As Int64, aMsec As Int64)
Parameters:
- aDays:
- aHours:
- aMinutes:
- aSeconds:
- aMsec:
constructor(aHours: Int64; aMinutes: Int64; aSeconds: Int64)
TimeSpan(Int64 aHours, Int64 aMinutes, Int64 aSeconds)
init(_ aHours: Int64, _ aMinutes: Int64, _ aSeconds: Int64)
TimeSpan(Int64 aHours, Int64 aMinutes, Int64 aSeconds)
Sub New(aHours As Int64, aMinutes As Int64, aSeconds As Int64)
Parameters:
- aHours:
- aMinutes:
- aSeconds:
constructor (Int64)
constructor(aTotal: Int64)
TimeSpan(Int64 aTotal)
init(_ aTotal: Int64)
TimeSpan(Int64 aTotal)
Sub New(aTotal As Int64)
Parameters:
- aTotal:
method CompareTo(a: Object): Int32
Int32 CompareTo(Object a)
func CompareTo(_ a: Object) -> Int32
Int32 CompareTo(Object a)
Function CompareTo(a As Object) As Int32
Parameters:
- a:
method CompareTo(a: TimeSpan): Int32
Int32 CompareTo(TimeSpan a)
func CompareTo(_ a: TimeSpan) -> Int32
Int32 CompareTo(TimeSpan a)
Function CompareTo(a As TimeSpan) As Int32
Parameters:
- a:
method Equals(aOther: Object): Boolean
Boolean Equals(Object aOther)
func Equals(_ aOther: Object) -> Boolean
Boolean Equals(Object aOther)
Function Equals(aOther As Object) As Boolean
Parameters:
- aOther:
method Equals(other: TimeSpan): Boolean
Boolean Equals(TimeSpan other)
func Equals(_ other: TimeSpan) -> Boolean
Boolean Equals(TimeSpan other)
Function Equals(other As TimeSpan) As Boolean
Parameters:
- other:
Finalize protected virtual (declared in Object)
method Finalize
void Finalize()
func Finalize()
void Finalize()
Sub Finalize()
GetHashCode override virtual
method GetHashCode: Int32
Int32 GetHashCode()
func GetHashCode() -> Int32
Int32 GetHashCode()
Function GetHashCode() As Int32
GetType (declared in Object)
Returns the actual type of this class
method GetType: Type
Type GetType()
func GetType() -> Type
Type GetType()
Function GetType() As Type
ToString override virtual
method ToString: String
String ToString()
func ToString() -> String
String ToString()
Function ToString() As String