S
Savan Gandhi
Hi,
I have a table in my slide. The results of manually applying a template are different from that when applied using VBA method: _presentation.applytemplate(). The font size is maintained when applying a template manually. It gets lost thru' VBA. The font size reduces, in my case from 28 to 18.
I have a work around:
If sh.Type = msoTable Then
Dim shr As PowerPoint.ShapeRange = sh.Ungroup
shr.Group()
End If
I run above code before: _presentation.applytemplate(). The formatting is preserved but the table gets converted into a group of rectangular textbox. It does not behave anymore like a table.
How can preserve table's formatting with _presentation.applytemplate() ?
Regards,
Savan
I have a table in my slide. The results of manually applying a template are different from that when applied using VBA method: _presentation.applytemplate(). The font size is maintained when applying a template manually. It gets lost thru' VBA. The font size reduces, in my case from 28 to 18.
I have a work around:
If sh.Type = msoTable Then
Dim shr As PowerPoint.ShapeRange = sh.Ungroup
shr.Group()
End If
I run above code before: _presentation.applytemplate(). The formatting is preserved but the table gets converted into a group of rectangular textbox. It does not behave anymore like a table.
How can preserve table's formatting with _presentation.applytemplate() ?
Regards,
Savan