メンバ一覧 IntegerV 前のプロパティ 次のプロパティ

VB C# ALL プログラミング言語によるフィルタ (ここで選んだ言語で選別された説明や図だけが表示されます)

★ 削除予定のプロパティ (かわりに intValue または valueOf をお使いください)

IntegerV プロパティ

機能および役割

この WrpInteger オブジェクトのインスタンスの値を示す。

所属するクラス (ツーピーススタイルの場合にこのプロパティが宣言されているクラス)

AppliTech.WorkFrame.WrpInteger (ローカル)

AppliTech.WorkFrame.WrpInteger (セントラル)

または AppliTech.WrpObject8.dll の中の以下のクラスにも含まれている。

AppliTech.WrpInteger (ローカル・セントラル共通)

値を参照する際の書き方

wI.IntegerV

(ただし wI は、クラス WrpInteger のインスタンス)

型および属性 (このプロパティの型と属性)

整数型 (Integer, int)

取り得る値とその意味

例外の発生 (誤った参照の際に発生する例外)

(関係する例外の発生なし)

使用上のヒントと注意事項

関連事項

使用例

Public Function Derived(ByVal SizeCode As WrpInteger) As WrpDecimal
    If SizeCode Is Nothing Then
        Return Nothing
    End If
    Dim data As ApparelSize = ApparelSizeManager.GetSize(SizeCode.IntegerV)
    If data Is Nothing Then
        Return Nothing
    Else
        Return WrpDecimal.valueOf(data.GetUpper())
    End If
End Function
public WrpDecimal Derived( WrpInteger SizeCode ) {
    if (SizeCode == null) {
        return null;
    }
    ApparelSize data = ApparelSizeManager.GetSize(SizeCode.IntegerV);
    if (data == null) {
        return null;
    }
    else {
        return WrpDecimal.valueOf(data.GetUpper());
    }
}
(MANDALA.J ではこの機能に対応したクラスを提供していません。
かわりに、java.lang.Integer クラスを使用してください。)