動作検証バージョン:64bit Windows 10 Pro + 32bit Excel(バージョン2204 ビルド15128.20178 Microsoft Store)
Excel VBAのGraphicオブジェクトとPictureFormatオブジェクトには、同じようなプロパティが複数用意されています。
[スポンサードリンク]
どれくらい似たプロパティが存在するかを確認したかったので、戻り値とともに一覧を作成しておきます。
Graphic のプロパティ | 戻り値 | PictureFormat のプロパティ | 戻り値 |
---|---|---|---|
Application | Application | Application | Object |
Brightness | Single | Brightness | Single |
ColorType | MsoPictureColorType | ColorType | MsoPictureColorType |
Contrast | Single | Contrast | Single |
Creator | XlCreator | Creator | Long |
- | Crop | Crop | |
CropBottom | Single | CropBottom | Single |
CropLeft | Single | CropLeft | Single |
CropRight | Single | CropRight | Single |
CropTop | Single | CropTop | Single |
Filename | String | - | |
Height | Single | - | |
LockAspectRatio | MsoTriState | - | |
Parent | Object | Parent | Object |
- | TransparencyColor | MsoRGBType | |
- | Transparent Background | MsoTriState | |
Width | Single | - |
メソッドは、PictureFormatオブジェクトにのみ、戻り値のない
IncrementBrightness
IncrementContrast
が用意されています。
[スポンサードリンク]
- Newer:DataLabelの位置をVBAで取得する
- Older:グラフ第2軸のタイトル・軸ラベルをVBAで設定する
Home » エクセルマクロ・Excel VBAの使い方 » GraphicとPictureFormatのプロパティ比較一覧