Show / Hide Table of Contents

    IGroupingGetter.GetItemDecimal(string column, bool isOriginalValue = false) Method

    .NET Standard 2.x | Current Version (1.0.1)

    0.5.0-alpha

    1.0.1 (current)

    When the IsGroup property is false, gets the value of the specified column (by the column name) and converts this value to the System.Nullable<System.Decimal> data type. You can specify whether to get the original value. By default, the current value is taken.

    Namespace: PowerBuilder.Data

    Assembly: PowerBuilder.Data.dll

    Syntax

      decimal? GetItemDecimal(string column, bool isOriginalValue = false);
    

    Parameters

    column System.String

    The name of the column to get value.

    isOriginalValue System.Boolean

    (Optional) Whether to get the original value.

    True -- to get the original value;

    False (default) -- to get the current value.

    Returns

    System.Nullable<System.Decimal>

    Returns the current value of the column if isOriginalValue is false; otherwise, returns the original value of the column.

    Applies to

    .NET Standard

    2.x

    Back to top Generated by Appeon