GetSubstitutions
IFontsManager.GetSubstitutions method
Ruft die Informationen zu Schriftarten ab, die beim Rendern der Präsentation ersetzt werden.
public IEnumerable<FontSubstitutionInfo> GetSubstitutions()
Rückgabewert
Sammlung aller SchriftersetzungenFontSubstitutionInfo
.
Beispiele
using (Presentation pres = new Presentation("pres.pptx"))
{
foreach (var fontSubstitution in pres.FontsManager.GetSubstitutions())
{
Console.WriteLine("{0} -> {1}", fontSubstitution.OriginalFontName, fontSubstitution.SubstitutedFontName);
}
}
Siehe auch
- class FontSubstitutionInfo
- interface IFontsManager
- namensraum Aspose.Slides
- Montage Aspose.Slides