System::Decimal::operator*= メソッド

Decimal::operator*= method

現在のオブジェクトに、現在のオブジェクトと指定されたオブジェクトが表す値の乗算結果となる新しい値を代入します。

Decimal & System::Decimal::operator*=(const Decimal &d)
パラメーター説明
dconst Decimal&乗数を表す Decimal オブジェクト

ReturnValue

自身への参照

参照


title: System::Decimal::operator<= メソッド linktitle: operator<= second_title: Aspose.Page for C++ description: ‘System::Decimal::operator<= メソッド。C++ で現在のオブジェクトが表す値が、指定されたオブジェクトが表す値以下かどうかを判断します。’ type: docs weight: 2400 url: /cpp/system/decimal/operator_=/

Decimal::operator<= method

現在のオブジェクトが表す値が、指定されたオブジェクトが表す値以下かどうかを判定します。

bool System::Decimal::operator<=(const Decimal &d) const
パラメーター説明
dconst Decimal&現在のオブジェクトと比較するための Decimal オブジェクト

ReturnValue

現在のオブジェクトが表す値が d が表す値以下の場合は true、そうでなければ false

参照


title: System::Decimal::operator>= メソッド linktitle: operator>= second_title: Aspose.Page for C++ description: ‘System::Decimal::operator>= メソッド。C++ で現在のオブジェクトが表す値が、指定されたオブジェクトが表す値以上かどうかを判断します。’ type: docs weight: 2800 url: /cpp/system/decimal/operator_=/

Decimal::operator>= method

現在のオブジェクトが表す値が、指定されたオブジェクトが表す値以上かどうかを判定します。

bool System::Decimal::operator>=(const Decimal &d) const
パラメーター説明
dconst Decimal&現在のオブジェクトと比較するための Decimal オブジェクト

ReturnValue

現在のオブジェクトが表す値が d が表す値以上の場合は true、そうでなければ false

参照