Agregar encabezado y pie de página en PowerPoint C#

El encabezado y el pie de página en las presentaciones de PowerPoint se usan para mostrar información adicional, como el número de diapositiva, el autor, la fecha, etc. En este artículo, aprenderá cómo agregar y administrar el encabezado y el pie de página en las presentaciones de PowerPoint PPTX/PPT mediante programación usando C#.

Para trabajar con encabezado y pie de página en presentaciones de PowerPoint, usaremos Aspose.Slides for .NET. Es una biblioteca de clases .NET que le permite crear y manipular documentos de PowerPoint y OpenOffice. Puede descargar la DLL de la API desde la sección descargas. Además, la API se puede instalar mediante NuGet.

PM> Install-Package Aspose.Slides.NET

Los siguientes son los pasos para agregar encabezado y pie de página en una presentación de PowerPoint usando C#.

El siguiente ejemplo de código muestra cómo agregar encabezado y pie de página en una presentación de PowerPoint.

// Cargar Presentación
Presentation pres = new Presentation("headerTest.pptx");

// Establecer pie de página
pres.HeaderFooterManager.SetAllFootersText("My Footer text");
pres.HeaderFooterManager.SetAllFootersVisibility(true);

// Encabezado de acceso y actualización
IMasterNotesSlide masterNotesSlide = pres.MasterNotesSlideManager.MasterNotesSlide;
if (null != masterNotesSlide)
{
    foreach (IShape shape in masterNotesSlide.Shapes)
    {
        if (shape.Placeholder != null)
        {
            if (shape.Placeholder.Type == PlaceholderType.Header)
            {
                ((IAutoShape)shape).TextFrame.Text = "HI there new header";
            }
        }
    }
}

// Guardar presentación
pres.Save("HeaderFooter.pptx", SaveFormat.Pptx);

Aspose.Slides for .NET también le permite configurar el encabezado y el pie de página en las diapositivas de folletos y notas. Para esto, puede aplicar cambios en la diapositiva de notas maestras o en una diapositiva individual. Las siguientes secciones cubren ambos escenarios.

El siguiente ejemplo de código muestra cómo cambiar el encabezado y el pie de página en el maestro de notas usando C#.

using (Presentation presentation = new Presentation("presentation.pptx"))
{
	// Cambiar la configuración de encabezado y pie de página para notas maestras y todas las diapositivas de notas
	IMasterNotesSlide masterNotesSlide = presentation.MasterNotesSlideManager.MasterNotesSlide;
	if (masterNotesSlide != null)
	{
		IMasterNotesSlideHeaderFooterManager headerFooterManager = masterNotesSlide.HeaderFooterManager;

		headerFooterManager.SetHeaderAndChildHeadersVisibility(true); // make the master notes slide and all child Footer placeholders visible
		headerFooterManager.SetFooterAndChildFootersVisibility(true); // make the master notes slide and all child Header placeholders visible
		headerFooterManager.SetSlideNumberAndChildSlideNumbersVisibility(true); // make the master notes slide and all child SlideNumber placeholders visible
		headerFooterManager.SetDateTimeAndChildDateTimesVisibility(true); // make the master notes slide and all child Date and time placeholders visible

		headerFooterManager.SetHeaderAndChildHeadersText("Header text"); // set text to master notes slide and all child Header placeholders
		headerFooterManager.SetFooterAndChildFootersText("Footer text"); // set text to master notes slide and all child Footer placeholders
		headerFooterManager.SetDateTimeAndChildDateTimesText("Date and time text"); // set text to master notes slide and all child Date and time placeholders
	}
  	// Guardar presentación
	presentation.Save("testresult.pptx",SaveFormat.Pptx);
}

El siguiente ejemplo de código muestra cómo cambiar el encabezado y el pie de página en las diapositivas de notas usando C#.

// Cargar presentación
using (Presentation presentation = new Presentation("presentation.pptx"))
{
	// Cambiar la configuración de encabezado y pie de página solo para la primera diapositiva de notas
	INotesSlide notesSlide = presentation.Slides[0].NotesSlideManager.NotesSlide;
	if (notesSlide != null)
	{
		INotesSlideHeaderFooterManager headerFooterManager = notesSlide.HeaderFooterManager;
		if (!headerFooterManager.IsHeaderVisible)
			headerFooterManager.SetHeaderVisibility(true); // make this notes slide Header placeholder visible

		if (!headerFooterManager.IsFooterVisible)
			headerFooterManager.SetFooterVisibility(true); // make this notes slide Footer placeholder visible

		if (!headerFooterManager.IsSlideNumberVisible)
			headerFooterManager.SetSlideNumberVisibility(true); // make this notes slide SlideNumber placeholder visible

		if (!headerFooterManager.IsDateTimeVisible)
			headerFooterManager.SetDateTimeVisibility(true); // make this notes slide Date-time placeholder visible

		headerFooterManager.SetHeaderText("New header text"); // set text to notes slide Header placeholder
		headerFooterManager.SetFooterText("New footer text"); // set text to notes slide Footer placeholder
		headerFooterManager.SetDateTimeText("New date and time text"); // set text to notes slide Date-time placeholder
	}
  	// Guardar presentación
	presentation.Save("testresult.pptx",SaveFormat.Pptx);
}

Obtenga una licencia de API gratuita

Obtenga una licencia temporal gratuita para usar Aspose.Slides for .NET sin limitaciones de evaluación.

Conclusión

En este artículo, ha aprendido cómo agregar encabezado y pie de página en presentaciones de PowerPoint usando C#. Además, ha visto cómo cambiar el encabezado y el pie de página en las diapositivas de notas mediante programación. Además, puede explorar la documentación para obtener más información sobre Aspose.Slides for .NET. Además, puede hacer sus preguntas a través de nuestro foro.

Ver también