PdfFontEmbeddingPolicyProvider Delegate |
Namespace: Atalasoft.PdfDoc.Generating.ResourceHandling.Fonts
public delegate PdfFontEmbeddingPolicy PdfFontEmbeddingPolicyProvider( PdfFontResource resource, PdfFontEmbeddingPermission permissions )
private PdfFontEmbeddingPolicy MyEmbeddingPolicyProvider(PdfFontResource resource, PdfFontEmbeddingPermission permissions) { PdfFontEmbeddingAction action = PdfFontEmbeddingAction.DontEmbed; switch (permissions) { case PdfFontEmbeddingPermission.Unrestricted: case PdfFontEmbeddingPermission.PreviewAndPrint: case PdfFontEmbeddingPermission.NoSubsetting: action = PdfFontEmbeddingAction.Embed; break; } return new PdfFontEmbeddingPolicy(action); }