Resource.Initials プロパティ (Project)
リソースのイニシャルを取得または設定します。 読み取り/書き込みが可能な String です。
構文
式。 Initials
式Resource オブジェクトを表す変数。
例
次の使用例は、作業中のプロジェクトの各リソースの頭文字を、リソースの名前に含まれるスペースに基づいて設定します。 たとえば、"山形 美津子" という名前のリソースの頭文字は "山美" になります。
Sub SetInitialsBasedOnName()
Dim I As Integer ' Index used in For loop
Dim R As Resource ' Resource used in For Each loop
Dim NewInits As String ' The new initials of the resource
' Cycle through the resources of the active project.
For Each R In ActiveProject.Resources
' Initialize with first character of name.
NewInits = Mid(R.Name, 1, 1)
' Look for spaces in the resource's name.
For I = 1 To Len(R.Name)
' If not first character, and space is found, then add initial.
If I > 1 And Mid(R.Name, I, 1) = Chr(32) Then
If I + 1 <= Len(R.Name) Then
NewInits = NewInits & Mid(R.Name, I + 1, 1)
End If
End If
Next I
' Give the resource its new initials.
R.Initials = NewInits
Next R
End Sub
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。