Skip to content

Instantly share code, notes, and snippets.

View openize-com-gists's full-sized avatar

openize-com-gists

View GitHub Profile
@openize-com-gists
openize-com-gists / animate-powerpoint-shape-with-floatin-effect-using-csharp.cs
Created June 27, 2025 11:56
Animate PowerPoint Shape with FloatIn Effect Using C# | Openize.OpenXML-SDK
// 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
@openize-com-gists
openize-com-gists / apply-bounce-animation-to-shape-in-powerpoint-using-csharp.cs
Created June 20, 2025 12:44
Bounce Animation Effect in PowerPoint Slide using C#
// 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
@openize-com-gists
openize-com-gists / Create-Roman-Alphabetic-Paragraphs.cs
Created June 16, 2025 07:05
C# Create Roman Alphabetic Paragraphs in Word Documents
using System;
namespace OpenizeTableReadingExample
{
class Program
{
static void Main(string[] args)
{
var program = new Program();
program.ReadTablesInWordDocument();
@openize-com-gists
openize-com-gists / DESCRIPTION.md
Created June 16, 2025 07:05
C# Read Word Document Tables

C# Read Word Document Tables

@openize-com-gists
openize-com-gists / DESCRIPTION.md
Created June 16, 2025 07:04
Modify Word Group Shapes

Modify Word Group Shapes

@openize-com-gists
openize-com-gists / DESCRIPTION.md
Created June 16, 2025 07:04
Multiple Word Documents Concurrent Updating in C#

Multiple Word Documents Concurrent Updating in C#

@openize-com-gists
openize-com-gists / Create-Numbered-Word-Paragraphs.cs
Created June 16, 2025 07:04
C# Create Numbered Paragraphs in Word Document
using System;
namespace OpenizeNumberedParagraphsCreationExample
{
class Program
{
static void Main(string[] args)
{
// Prerequisite: Install Openize.Words NuGet package
// Install-Package Openize.Words
using System;
namespace OpenizeGroupShapesCreationExample
{
class Program
{
static void Main(string[] args)
{
// Prerequisite: Install Openize.Words NuGet package
// Install-Package Openize.Words
@openize-com-gists
openize-com-gists / DESCRIPTION.md
Created June 16, 2025 07:04
C# Read Multiple Multilevel List Paragraphs in Word Documents

C# Read Multiple Multilevel List Paragraphs in Word Documents

@openize-com-gists
openize-com-gists / Create-Word-Tables.cs
Created June 16, 2025 07:04
C# Create Word Document Tables
using System;
namespace OpenizeTableCreationExample
{
class Program
{
static void Main(string[] args)
{
var program = new Program();
program.CreateWordDocumentWithTables();