Add Custom data to application

  • Thread starter Thread starter Vineeth
  • Start date Start date
V

Vineeth

Hi,

Iam developing a com addin for Powerpoint, my application have one project
file (template), its comes like an xml file currently i need to add that file
into the powerpoint that will not visible and un editable to user, if it
possible how can implement this??

Thanks
 
Hi,

In my application insert pictures into powerpoint, when an image insert into
powerpoint it have some data files that is like an xml file, i need to
insert that file along with the picture, each picture have each data file,
and i need to retrieve that file for future editing of that file,
how can implement this
 
You can use the same idea that Steve mentioned. Like a presentation, each
shape also has the Tags collection. You can add your picture data to the
picture shapes. If PictureShp is your picture shape, then you would use

PictureShp.Tags.Add "TagName", "TagValue"

to store TagValue to a tag named TagName.

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 
Back
Top