Akshay-Warule

Results 4 issues of Akshay-Warule

When we give height to table or height given to row nothing change happen in pptx . how to increase height of the row or height of the table ....

🐛 bug

In this library Presentation.SlideHeight and Presentation.SlideWidth is only give get method and not give set method. So not able to set value of height and width. If there is any...

enhancement

I make one horizontal line and want to change color of line. but error is coming using IPresentation source = SCPresentation.Create(); var slide1 = source.Slides[0].Shapes; var horizontalLine1 = slide1.AddLine(startPointX: 60,...

using IPresentation source = SCPresentation.Create(); var slideMaster1= source.Slides[0]; var slide1 = source.Slides[0].Shapes; var horizontalLine1 = slide1.AddLine(startPointX: 60, startPointY: 100, endPointX: 5000, endPointY: 100); if (horizontalLine1 != null) { horizontalLine1.Width =...