Show / Hide Table of Contents

    IGroupingGetter.GetItemNumber(short column, bool isOriginalValue = false) Method

    .NET Standard 2.x

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

    Namespace: DWNet.Data

    Assembly: DWNet.Data.dll

    Syntax

      double? GetItemNumber(short column, bool isOriginalValue = false);
    

    Parameters

    column System.String

    The zero-based column number 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.Double>

    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