Add( extends d as Date, Amount as Integer, Interval as Intervals ) |
Adds the specified amount of time to the Date object. |
Add( extends d as Date, IncrementPeriod as String ) |
Add( extends d as Date, TotalSeconds as Integer ) |
Add( extends d as Xojo.Core.Date, Amount as Integer, Interval as Intervals ) |
Add( extends d as Xojo.Core.Date, IncrementPeriod as String ) |
Add( extends d as Xojo.Core.Date, TotalSeconds as Integer ) |
Compare( Extends d as Date, CompTo as Date, CompType as ComparisonTypes ) As ComparisonResult |
Will compare two date objects, and return a ComparisonResult enum value of GreaterThan, LessThan, or EqualTo |
Compare( extends d as Date, CompTo as Xojo.Core.Date, CompType as ComparisonTypes ) As ComparisonResult |
Compare( extends d as Xojo.Core.Date, CompTo as Date, CompType as ComparisonTypes ) As ComparisonResult |
Compare( extends d as Xojo.Core.Date, CompTo as Xojo.Core.Date, CompType as ComparisonTypes ) As ComparisonResult |
CurrencyDecimalDigits( CurrencyCode as String ) As Integer |
Returns the number of digits expected on a currency type for the specified currency code. |
CurrencyName( CurrencyCode as String, Plural as Boolean = False ) As String |
Returns the localized name for the currency code specified. IE: for USD with Plural = False the result is “U.S. Dollar”, and with Plural = True the result is “U.S. dollars” |
CurrencySymbol( currencyCode as String, Native as Boolean = True ) |
Returns the symbol for currency of the specified currency code. IE: USD will return “$”for Native = True, and “US$” for Native = False |
DayName( DayNumber as Integer ) As String |
Returns the full day name (IE: Wednesday) for the specified DayNumber |
DayName( Extends d as Date ) As String |
Returns the day name for the Day property of the passed object. |
DayName( Extends d as Xojo.Core.Date ) As String |
DayNameMin( DayNumber as Integer ) As String |
Returns the minimal day name (IE: “We” for Wednesday) for the specified DayNumber |
DayNameMin( Extends d as Date ) As String |
Returns the minimal day name (IE: “We” for Wednesday) for the Day property of the passed object. |
DayNameMin( Extends d as Xojo.Core.Date ) As String |
DayNameShort( DayNumber as Integer ) As String |
Returns the short day name (IE: “Wed” for Wednesday) for the specified DayNumber |
DayNameShort( Extends d as Date ) As String |
Returns the short day name (IE: “Wed” for Wednesday) for the Day property of the passed object. |
DayNameShort( Extends d as Xojo.Core.Date ) As String |
Format( Extends d as Date, formatString as String ) as String |
Formats the date of the passed object according to the mask assigned to formatString |
Format( Extends d as Xojo.Core.Date, formatString as String ) As String |
From( Extends d as Date, dTarget as Date ) As String |
Returns a localized string of time difference between d and dTarget. IE: A difference of three seconds will result in either “in a few seconds” or “a few seconds ago”dependent on values. |
From( Extends d as Xojo.Core.Date, dTarget as Xojo.Core.Date ) as String |
FromNow( Extends dTarget as Date ) |
Returns a localized string of time difference between d and Now. IE: A difference of three seconds will result in either “in a few seconds”or “a few seconds ago” dependent on values. |
FromNow( Extends dTarget as Xojo.Core.Date ) |
isAM( Extends d as Date ) As Boolean |
Returns True if the meridiem of the time represented in the Date object is before noon. |
isAM( Extends d as Xojo.Core.Date ) As Boolean |
isPM( Extends d as Date ) As Boolean |
Returns True if the meridiem of the time represented in the Date object is after noon. |
isPM( Extends d as Xojo.Core.Date ) As Boolean |
Meridiem( extends d as Date, isUppercase as Boolean = False ) As String |
Returns the string representing the meridiem of the current time (IE: “AM” or “PM” ) |
Meridiem( extends d as Xojo.Core.Date, isUppercase as Boolean = False ) As String |
MonthName( MonthNumber as Integer ) As String |
Returns the full month name (IE: December) for the specified MonthNumber |
MonthName( Extends d as Date ) As String |
Returns the month name for the Month property of the passed object. |
MonthName( Extends d as Xojo.Core.Date ) As String |
MonthNameShort( MonthNumber as Integer ) As String |
Returns the short month name (IE: “Dec”) for the specified MonthNumber |
MonthNameShort( Extends d as Date ) As String |
Returns the short month name for the Month property of the passed object. |
MonthNameShort( Extends d as Xojo.Core.Date ) As String |
Now() As Date |
Returns a date object representing the current date/time. |
Subtract( extends d as Date, Amount as Integer, Interval as Intervals ) |
Subtracts the specified amount of time to the Date object. |
Subtract( extends d as Date, IncrementPeriod as String ) |
Subtract( extends d as Date, TotalSeconds as Integer ) |
Subtract( extends d as Xojo.Core.Date, Amount as Integer, Interval as Intervals ) |
Subtract( extends d as Xojo.Core.Date, IncrementPeriod as String ) |
Subtract( extends d as Xojo.Core.Date, TotalSeconds as Integer ) |
SystemLocale() As String |
Returns the current system’s language code. |
toCoreDate( Extends d as Date ) As Xojo.Core.Date |
Converts an old framework Date object to a new framework Xojo.Core.Date object. |
toCurrency( extends v as Double, currencyCode as String = “USD”, Native as Boolean = True ) As String |
Converts a Double value to a localized currency string. |
toDate( Extends d as Xojo.Core.Date ) As Date |
Converts a new framework Xojo.Core.Date object to an old framework Date object. |
toDecimal( extends v as Double, numberOfDecimals as Integer ) As String |
Converts a Double value to a localized decimal string. |
toPercent( extends v as Double, numberOfDecimals as Integer ) As String |
Converts a Double value to a localized percentage string. |