RunProperties Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
RunProperties() |
Initialise une nouvelle instance de la classe RunProperties. |
RunProperties(OpenXmlElement[]) |
Initialise une nouvelle instance de la classe RunProperties avec les éléments enfants spécifiés. |
RunProperties(IEnumerable<OpenXmlElement>) |
Initialise une nouvelle instance de la classe RunProperties avec les éléments enfants spécifiés. |
RunProperties(String) |
Initialise une nouvelle instance de la classe RunProperties à partir du code XML externe. |
RunProperties()
Initialise une nouvelle instance de la classe RunProperties.
public RunProperties ();
Public Sub New ()
Exemples
L’exemple de code suivant crée un document de traitement de texte et y écrit du texte à l’aide de polices spécifiques. Après avoir exécuté l’exemple, examinez le fichier de test créé pour voir le texte.
using System;
using System.Collections.Generic;
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
namespace RunPropertiesEx
{
class Program
{
static void Main(string[] args)
{
// This example creates a word processing document and writes
// some text into it using specific fonts.
string filepath = @"C:\Users\Public\Documents\RunPropertiesEx.docx";
using (WordprocessingDocument source =
WordprocessingDocument.Create(filepath, WordprocessingDocumentType
.Document))
{
// Create a Document, Body, and Paragraph objects.
MainDocumentPart mainPart = source.AddMainDocumentPart();
mainPart.Document = new Document();
Body body = mainPart.Document.AppendChild(new Body());
Paragraph paragraph = body.AppendChild(new Paragraph());
// Append a run as source and set its Attributes.
Run srcRunElem = paragraph.AppendChild(new Run(new
Text("Hello, World!")));
RunProperties rPr1 = new RunProperties(new RunFonts()
{ Ascii = "Palace Script MT",
Hint = FontTypeHintValues.ComplexScript },
new Color() { Val = "FF0000" }, new FontSize()
{ Val = "84" });
// Prepend the RunProperties to the Run.
srcRunElem.PrependChild<RunProperties>(rPr1);
// Append another run as target and set its Attributes.
Run targetRun = paragraph.AppendChild(new Run(new Text
("Hello again")));
RunProperties rPr2 = new RunProperties(new RunFonts()
{ Ascii = "Algerian" }, new Color() { Val = "FF00FF" },
new FontSize() { Val = "64" });
// Prepend the RunProperties to the Run.
targetRun.PrependChild<RunProperties>(rPr2);
// Get the SlideSize RunFonts form source and target.
RunFonts srcRunFontsElem = srcRunElem.RunProperties.RunFonts;
RunFonts tgtRunFontsElem = targetRun.RunProperties.RunFonts;
// Retrieve Attributes of the source element.
IList<OpenXmlAttribute> srcRunFontsAttrs = srcRunFontsElem.GetAttributes();
Console.WriteLine("Source Fonts:");
foreach (OpenXmlAttribute a in srcRunFontsAttrs)
{
Console.WriteLine("{0}: {1}", a.LocalName, a.Value);
}
// Call SetAttributes on target RunFonts, changes will be accpeted to target.
// Ascii is updated. And Hint which didn't exist in target, is appended.
tgtRunFontsElem.SetAttributes(srcRunFontsAttrs);
Console.WriteLine("Target Fonts after setting:");
foreach (OpenXmlAttribute a in tgtRunFontsElem.GetAttributes())
{
Console.WriteLine("{0}: {1}", a.LocalName, a.Value);
}
Console.WriteLine("All done. Press a key.");
Console.ReadKey();
}
}
}
}
//Output:
//Source Fonts:
//hint: cs
//ascii: Palace Script MT
//Target Fonts after setting:
//hint: cs
//ascii: Palace Script MT
//All done. Press a key.
Imports System.Collections.Generic
Imports DocumentFormat.OpenXml
Imports DocumentFormat.OpenXml.Packaging
Imports DocumentFormat.OpenXml.Wordprocessing
Module Module1
Sub Main(ByVal args As String())
' This example creates a word processing document and writes
' some text into it using specific fonts.
Dim filepath As String = "C:\Users\Public\Documents\RunPropertiesEx.docx"
Using source As WordprocessingDocument = WordprocessingDocument.Create(filepath, WordprocessingDocumentType.Document)
' Create a Document, Body, and Paragraph objects.
Dim mainPart As MainDocumentPart = source.AddMainDocumentPart()
mainPart.Document = New Document()
Dim body As Body = mainPart.Document.AppendChild(New Body())
Dim paragraph As Paragraph = body.AppendChild(New Paragraph())
' Append a run as source and set its Attributes.
Dim srcRunElem As Run = paragraph.AppendChild(New Run(New Text("Hello, World!")))
Dim rPr1 As New RunProperties(New RunFonts() With { _
.Ascii = "Palace Script MT", _
.Hint = FontTypeHintValues.ComplexScript _
}, New Color() With { _
.Val = "FF0000" _
}, New FontSize() With { _
.Val = "84" _
})
' Prepend the RunProperties to the Run.
srcRunElem.PrependChild(Of RunProperties)(rPr1)
' Append another run as target and set its Attributes.
Dim targetRun As Run = paragraph.AppendChild(New Run(New Text("Hello again")))
Dim rPr2 As New RunProperties(New RunFonts() With { _
.Ascii = "Algerian" _
}, New Color() With { _
.Val = "FF00FF" _
}, New FontSize() With { _
.Val = "64" _
})
' Prepend the RunProperties to the Run.
targetRun.PrependChild(Of RunProperties)(rPr2)
' Get the SlideSize RunFonts form source and target.
Dim srcRunFontsElem As RunFonts = srcRunElem.RunProperties.RunFonts
Dim tgtRunFontsElem As RunFonts = targetRun.RunProperties.RunFonts
' Retrieve Attributes of the source element.
Dim srcRunFontsAttrs As IList(Of OpenXmlAttribute) = srcRunFontsElem.GetAttributes()
Console.WriteLine("Source Fonts:")
For Each a As OpenXmlAttribute In srcRunFontsAttrs
Console.WriteLine("{0}: {1}", a.LocalName, a.Value)
Next
' Call SetAttributes on target RunFonts, changes will be accpeted to target.
' Ascii is updated. And Hint which didn't exist in target, is appended.
tgtRunFontsElem.SetAttributes(srcRunFontsAttrs)
Console.WriteLine("Target Fonts after setting:")
For Each a As OpenXmlAttribute In tgtRunFontsElem.GetAttributes()
Console.WriteLine("{0}: {1}", a.LocalName, a.Value)
Next
Console.WriteLine("All done. Press a key.")
Console.ReadKey()
End Using
End Sub
End Module
'Output:
'Source Fonts:
'hint: cs
'ascii: Palace Script MT
'Target Fonts after setting:
'hint: cs
'ascii: Palace Script MT
'All done. Press a key.
S’applique à
RunProperties(OpenXmlElement[])
Initialise une nouvelle instance de la classe RunProperties avec les éléments enfants spécifiés.
public RunProperties (params DocumentFormat.OpenXml.OpenXmlElement[] childElements);
new DocumentFormat.OpenXml.Wordprocessing.RunProperties : DocumentFormat.OpenXml.OpenXmlElement[] -> DocumentFormat.OpenXml.Wordprocessing.RunProperties
Public Sub New (ParamArray childElements As OpenXmlElement())
Paramètres
- childElements
- OpenXmlElement[]
Spécifie les éléments enfants.
S’applique à
RunProperties(IEnumerable<OpenXmlElement>)
Initialise une nouvelle instance de la classe RunProperties avec les éléments enfants spécifiés.
public RunProperties (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> childElements);
new DocumentFormat.OpenXml.Wordprocessing.RunProperties : seq<DocumentFormat.OpenXml.OpenXmlElement> -> DocumentFormat.OpenXml.Wordprocessing.RunProperties
Public Sub New (childElements As IEnumerable(Of OpenXmlElement))
Paramètres
- childElements
- IEnumerable<OpenXmlElement>
Spécifie les éléments enfants.
S’applique à
RunProperties(String)
Initialise une nouvelle instance de la classe RunProperties à partir du code XML externe.
public RunProperties (string outerXml);
new DocumentFormat.OpenXml.Wordprocessing.RunProperties : string -> DocumentFormat.OpenXml.Wordprocessing.RunProperties
Public Sub New (outerXml As String)
Paramètres
- outerXml
- String
Spécifie le code XML externe de l’élément.