英語で読む

次の方法で共有


PayRate オブジェクト (Project)

Represents a line of rates from the cost rate table of a resource. The PayRate object is a member of the PayRates collection.

PayRate オブジェクトの使い方

1 つの PayRate オブジェクトを返すには、PayRates (Index) を使用します。Index は、有効なレートを返す支払レートインデックス番号または日付です。 次の例は、コスト単価のレートの Tamara の最初の行の標準支払い単価を返します

ActiveProject.Resources("Tamara").CostRateTables("C").PayRates(1).StandardRate

PayRates コレクションの使い方

Use the PayRates property to return a PayRates collection. The following example lists the standard pay rates for all the cost rate tables of the resource in the active cell.

Dim CRT As CostRateTable
DIM PR As PayRate
Dim Rates As String

For Each CRT In ActiveCell.Resource.CostRateTables
    For Each PR In CRT.PayRates
        Rates = Rates & "CostRateTable " & CRT.Name & ": " & PR.StandardRate & vbCrLf
    Next PR
Next CRT
    
MsgBox Rates

PayRates コレクションに PayRate オブジェクトを追加するには、 Add メソッド使用します。 次の例では、2012 年 9 月 1 日の有効日、1 時間あたり $40.00、超過超過率 1 時間あたり 60.00 ドル、使用あたりのコストが 0 の行を Tamara のコスト レート テーブル "C" に追加します。

ActiveProject.Resources("Tamara").CostRateTables("C").PayRates.Add "9/1/2012", "$40/h", "$60/h", "$0"

メソッド

名前
Delete

プロパティ

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。