GrapeCity SPREAD for WPF 2.0J
Integer プロパティ

現在の数値 Value の整数部の値を取得します。
構文
'Declaration
 
Public ReadOnly Property Integer As Nullable(Of Decimal)
public Nullable<decimal> Integer {get;}

プロパティ値

入力された数値の整数部を示す null 許容の 10 進数値。
解説

このプロパティを使用して、実行時に現在の値の整数部を取得できます。また、Decimal プロパティを使用して小数部を取得することもできます。例:

number1.Value = -1234.120
この例では、Integer は -1234 を返し、Decimal プロパティは -0.12 を返します。

number1.Value = 1234
この例では、Integer は 1234 を返し、Decimal プロパティは0を返します。

基になる値が null 参照 (Visual Basicでは Nothing) に設定されている場合、このプロパティは null 参照 (Visual Basicでは Nothing) を返します。

参照

GcNumber クラス
GcNumber メンバ
GcNumber クラス
Value プロパティ
Decimal プロパティ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.