dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlTime Structure / Subtract Method / Subtract(PgSqlTime,TimeSpan) Method
A PgSqlTime structure to subtract from.
A System.TimeSpan value to subtract.

In This Topic
    Subtract(PgSqlTime,TimeSpan) Method
    In This Topic
    Subtracts a System.TimeSpan value from a PgSqlTime structure.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Subtract( _
       ByVal x As PgSqlTime, _
       ByVal t As TimeSpan _
    ) As PgSqlTime
    public static PgSqlTime Subtract( 
       PgSqlTime x,
       TimeSpan t
    )

    Parameters

    x
    A PgSqlTime structure to subtract from.
    t
    A System.TimeSpan value to subtract.

    Return Value

    The new PgSqlTime structure that represents the result of the subtract operation.
    See Also