ColorFormat.CMYK プロパティ (Publisher)
CMYK カラー プロパティを表す ColorCMYK オブジェクトを返します。
構文
式。Cmyk
式ColorFormat オブジェクトを表す変数。
戻り値
ColorCMYK
例
次の使用例は、2 つの新しい図形を作成し、1 つの図形の CMYK 塗りつぶしの色と 2 番目の図形の CMYK 値を同じ CMYK 値に設定します。
Sub ReturnAndSetCMYK()
Dim lngCyan As Long
Dim lngMagenta As Long
Dim lngYellow As Long
Dim lngBlack As Long
Dim shpHeart As Shape
Dim shpStar As Shape
Set shpHeart = ActiveDocument.Pages(1).Shapes.AddShape _
(Type:=msoShapeHeart, Left:=100, _
Top:=100, Width:=100, Height:=100)
Set shpStar = ActiveDocument.Pages(1).Shapes.AddShape _
(Type:=msoShape5pointStar, Left:=200, _
Top:=100, Width:=150, Height:=150)
With shpHeart.Fill.ForeColor.CMYK
.SetCMYK 10, 80, 200, 30
lngCyan = .Cyan
lngMagenta = .Magenta
lngYellow = .Yellow
lngBlack = .Black
End With
'Sets new shape to current shape's CMYK colors
shpStar.Fill.ForeColor.CMYK.SetCMYK _
Cyan:=lngCyan, Magenta:=lngMagenta, _
Yellow:=lngYellow, Black:=lngBlack
End Sub
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。