C# Read Word Document Tables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open an existing PowerPoint presentation from the specified file path | |
Openize.Slides.Presentation presentation = Openize.Slides.Presentation.Open("D:\\AsposeSampleData\\draw.pptx"); | |
// Create a new slide instance | |
Openize.Slides.Slide slide = new Openize.Slides.Slide(); | |
// Create a rectangle shape | |
Openize.Slides.Rectangle rectangle = new Openize.Slides.Rectangle(); | |
// Apply the Bounce animation to the rectangle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open an existing PowerPoint presentation from the specified file path | |
Openize.Slides.Presentation presentation = Openize.Slides.Presentation.Open("D:\\AsposeSampleData\\draw.pptx"); | |
// Create a new slide instance | |
Openize.Slides.Slide slide = new Openize.Slides.Slide(); | |
// Create a rectangle shape | |
Openize.Slides.Rectangle rectangle = new Openize.Slides.Rectangle(); | |
// Apply the Bounce animation to the rectangle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace OpenizeTableReadingExample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var program = new Program(); | |
program.ReadTablesInWordDocument(); |
Modify Word Group Shapes
Multiple Word Documents Concurrent Updating in C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace OpenizeNumberedParagraphsCreationExample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Prerequisite: Install Openize.Words NuGet package | |
// Install-Package Openize.Words |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace OpenizeGroupShapesCreationExample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Prerequisite: Install Openize.Words NuGet package | |
// Install-Package Openize.Words |
C# Read Multiple Multilevel List Paragraphs in Word Documents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace OpenizeTableCreationExample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var program = new Program(); | |
program.CreateWordDocumentWithTables(); |
NewerOlder