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

In This Topic
    Subtract(PgSqlTime,PgSqlTime) Method
    In This Topic
    Subtracts a PgSqlTime value from another PgSqlTime value.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Subtract( _
       ByVal x As PgSqlTime, _
       ByVal y As PgSqlTime _
    ) As PgSqlInterval
    public static PgSqlInterval Subtract( 
       PgSqlTime x,
       PgSqlTime y
    )

    Parameters

    x
    A PgSqlTime value to subtract from.
    y
    A PgSqlTime value to subtract.

    Return Value

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