Click here to Skip to main content
15,922,419 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi

I am not able to create a hyperlink inside the table in shape class of the power point presentation export from c#. I can able to create hyperlink in slide from c# but i cant able to
create hyperlink inside a table.please any can help i taken more time but no solution,thanks in advance.

Thanks and Regards,
P.Arun Karthick.
Posted
Comments
[no name] 23-Sep-13 4:46am    
I didn't get you can you extend your question with clear explanation wrto your code?
rebounderarun 23-Sep-13 5:15am    
Microsoft.Office.Interop.PowerPoint.Shape using this Iam creating a ppt presentation .
in a slide I am adding table using shapes.TAble. I want to add Hyperlink Inside the table.
but I am adding like below given code
i_Shape = i_Slide.Shapes.AddShape(Microsoft.Office.Core.MsoAutoShapeType.msoShapeRectangle, s32_Left, s32_Top, s32_Width, s32_Height);
i_Shape.TextFrame.TextRange.Text = number.ToString();
i_Shape.TextFrame.TextRange.Font.Name = "Verdana";
i_Shape.TextFrame.TextRange.Font.Size = 15;
i_Shape.Fill.Visible = MsoTriState.msoFalse;
i_Shape.Line.Visible = MsoTriState.msoFalse;
i_Shape.TextFrame.TextRange.Font.Bold = MsoTriState.msoTrue;
//i_Shape.TextFrame.TextRange.ActionSettings[PpMouseActivation.ppMouseClick].Hyperlink.Address = Path;//Temp
i_Shape.TextFrame.TextRange.ActionSettings[PpMouseActivation.ppMouseClick].Hyperlink.Address = x_Shape.InnerText.Replace(number + ";", "");
i_Shape.TextFrame.TextRange.Font.Color.RGB = 650;
if i do this the hyperlink is created separately it is not creating inside Table.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900