.pictures documentation

  • Thread starter Thread starter Gilles Plante
  • Start date Start date
G

Gilles Plante

Hello to all of you,

I need to manipulate pictures in Excel. I found out the .Pictures object,
but it is not documented in the Help - looks like Mircosoft's decision not to
document it.

So my question is where can I found information about .Pictures ?

Thanks
 
You could look in the object browser.

Search for pictures, then rightclick on the search results and select "show
hidden members".

You may be able to glean what you need by declaring a variable:

Dim myPic as Picture
then using the intellisense in your code.

You'll see the methods/properties after you type the dot:

myPic. <-- and you'll see a list.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top