Telerik Forums
Telerik Document Processing Forum
1 answer
229 views

Hi

In the documentation for CsvFormatProvider (https://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/formats-and-conversion/csv/settings) it is decribed that you can use Settings.Encoding to set the encoding when exporting.

How does it work when importing a file? Does CsvFormatProvider automatically detect the encoding of the provided file? Or do I need to ensure that files that I import always have a certain encoding?

 

Thanks!

Tanya
Telerik team
 answered on 18 Dec 2020
2 answers
456 views

In the process of evaluating the PDF functionality provided by Telerik so we can switch components (hopefully).

Is there a way to add a watermark to an existing PDF using another PDF as that watermark?

Thanks.

Fadi
Top achievements
Rank 1
Veteran
 answered on 17 Dec 2020
4 answers
1.2K+ views

Hi, 

I am looking at the WordsProcessing to use in a project to convert HTML to PDF, however I have two issues. One the CSS from the linked files are not being applied so the first and easy question is must this be inline styles \ css in the cshtml file

 

The second is how do I get the output to show as landscape. My code below shows you how I am currently doing it and it is pushing out the HTML table and data but no styles from bootstrap (mentioned above) but its also very squashed so I need it to be in a landscape format. 

public byte[] ConvertDocumentToPDF(byte[] fileData, string extension, ImageQuality exportQuality)
        {
            byte[] convertedData = null;
 
            RadFlowDocument document;
 
            IFormatProvider<RadFlowDocument> provider = this.providers
                .FirstOrDefault(p => p.SupportedExtensions
                .Any(e => string.Compare(extension, e, StringComparison.InvariantCultureIgnoreCase) == 0));
 
            if (provider == null)
            {
                Log.Error($"No provider found that supports the extension: {extension}");
                return null;
            }
 
            try
            {
                using (Stream stream = new MemoryStream(fileData))
                {
                    try
                    {
                        document = provider.Import(stream);
                    }
                    catch (Exception ex)
                    {
                        Log.Error(ex.ToString());
                        return null;
                    }
                }
 
                var quality = Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export.ImageQuality.Medium;
                switch (exportQuality)
                {
                    case ImageQuality.High:
                        quality = Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export.ImageQuality.High;
                        break;
 
                    case ImageQuality.Medium:
                        quality = Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export.ImageQuality.Medium;
                        break;
 
                    case ImageQuality.Low:
                        quality = Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Export.ImageQuality.Low;
                        break;
                }
 
                PdfFormatProvider formatProvider = new PdfFormatProvider();
                formatProvider.ExportSettings.ImageQuality = quality;
 
                using (var stream = new MemoryStream())
                {
                    formatProvider.Export(document, stream);
                    convertedData = stream.ToArray();
                }
            }
            catch (Exception ex)
            {
                Log.Error(ex.ToString());
            }
 
            return convertedData;
        }

 

Any and all help gratefully received. 

 

 

Thanks

 

Dimitar
Telerik team
 answered on 15 Dec 2020
8 answers
360 views

Hi all,

My company has historically used an ActiveX control to produce certain documents, created as PDFs, for printing or sending via email. With the move to a new development environment we lost support for ActiveX and need to switch to the Telerik document controls.

We wrote a program using the following Telerik objects:

Telerik.Windows.Documents.Fixed.Model.RadFixedDocument.

Telerik.Windows.Documents.Fixed.Model.RadFixedPage.

Telerik.Windows.Documents.Fixed.Model.Editing.FixedContentEditor.

This works fine for most of the document creation, but we have a need  to add language specific to each of our customers to the document. This language comes from each customer in an RTF file. The old control had a method to add the RTF file to the document flow, and it used the RTF metadata to add the properly formatted text to the document. Can you tell me if the Telerik document model has the ability to do this? And what objects/methods would be best to use? If it doesn't support RTF specifically, but has this ability for other formats, I can convert the RTF file to PDF, DOCX, etc.  Thanks.

Martin
Telerik team
 answered on 15 Dec 2020
1 answer
155 views

Hi,

It looks like that there is no support for the XLOOKUP function.  Result is "#NAME?"

Can you give me any tips to get around this issue?

Regards,

Bart

Dimitar
Telerik team
 answered on 10 Dec 2020
2 answers
103 views

Hey Guys. 

I'm Trying to do a simple XAML to PDF converstion but keep running against the same issue: 'XamlParseException: 'Cannot create unknown type '{clr-namespace:Telerik.Windows.Documents.Model;assembly=Telerik.Windows.Documents}RadDocument'.' Line number '1' and line position '2'.'

Here's the code:

 static void Main()
        {
            XamlFormatProvider xamlformatProvider = new XamlFormatProvider();
            Stream stream = File.OpenRead("C:\\Users\\Fabio-PC\\source\\repos\\XAMLtoPDF\\XAMLtoPDF\\FlowDocumentFormats.xaml");
            RadDocument rad = xamlformatProvider.Import(stream);


                xamlformatProvider.Import(stream);

                PdfFormatProvider provider = new PdfFormatProvider();
                using (Stream output = File.OpenWrite("C:\\Users\\Fabio-PC\\source\\repos\\XAMLtoPDF\\XAMLtoPDF\\sample.pdf"))
                {

                    provider.Export(rad, output);
                }
           }

Attached the XAML file. Could you please let me know where the issue is ?

 

XAML file:

 

<t:RadDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:t="clr-namespace:Telerik.Windows.Documents.Model;assembly=Telerik.Windows.Documents" xmlns:s="clr-namespace:Telerik.Windows.Documents.Model.Styles;assembly=Telerik.Windows.Documents" xmlns:r="clr-namespace:Telerik.Windows.Documents.Model.Revisions;assembly=Telerik.Windows.Documents" xmlns:n="clr-namespace:Telerik.Windows.Documents.Model.Notes;assembly=Telerik.Windows.Documents" xmlns:th="clr-namespace:Telerik.Windows.Documents.Model.Themes;assembly=Telerik.Windows.Documents" version="1.2" LayoutMode="Paged" LineSpacing="1.15" LineSpacingType="Auto" ParagraphDefaultSpacingAfter="12" ParagraphDefaultSpacingBefore="0" SelectedBibliographicStyleName="\APA.XSL" StyleName="defaultDocumentStyle">
  <t:RadDocument.Captions>
    <t:CaptionDefinition IsDefault="True" IsLinkedToHeading="False" Label="Figure" LinkedHeadingLevel="0" NumberingFormat="Arabic" SeparatorType="Hyphen" />
    <t:CaptionDefinition IsDefault="True" IsLinkedToHeading="False" Label="Table" LinkedHeadingLevel="0" NumberingFormat="Arabic" SeparatorType="Hyphen" />
  </t:RadDocument.Captions>
  <t:RadDocument.DocumentVariableList>
    <t:DocumentVariableInfo Name="§System.CurrentDate§" Value="27-07-2015" />
    <t:DocumentVariableInfo Name="§Patient.FullName§" Value="Hulpiau Jean-Pierre Maurice" />
    <t:DocumentVariableInfo Name="§Patient.AddressStreet§" Value="Voldersstraat 78 " />
    <t:DocumentVariableInfo Name="§Patient.AddressCity§" Value="9000 GENT" />
    <t:DocumentVariableInfo Name="§Patient.DateOfBirth§" Value="01-10-1928" />
    <t:DocumentVariableInfo Name="!COMD" Value="«MT:!COMD!»" />
    <t:DocumentVariableInfo Name="§Fiche.CCAddresses§" />
    <t:DocumentVariableInfo Name="§Patient.Street§" Value="Voldersstraat 78" />
    <t:DocumentVariableInfo Name="§Patient.City§" Value="GENT" />
    <t:DocumentVariableInfo Name="!kont" Value="«MT:!kont!»" />
    <t:DocumentVariableInfo Name="!Gevalideerd" Value="«MT:!Gevalideerd!»" />
    <t:DocumentVariableInfo Name="!Gecorrigeerd" Value="«MT:!Gecorrigeerd!»" />
    <t:DocumentVariableInfo Name="!brCoordinaten" Value="«ST:!brCoordinaten»" />
    <t:DocumentVariableInfo Name="!brGecorrigeerd" Value="«ST:!brGecorrigeerd»" />
    <t:DocumentVariableInfo Name="!brGevalideerd" Value="«ST:!brGevalideerd»" />
    <t:DocumentVariableInfo Name="§Patient.PostalCode§" Value="9000" />
  </t:RadDocument.DocumentVariableList>
  <t:RadDocument.ProtectionSettings>
    <t:DocumentProtectionSettings EnableDocumentProtection="False" Enforce="False" HashingAlgorithm="None" HashingSpinCount="0" ProtectionMode="ReadOnly" />
  </t:RadDocument.ProtectionSettings>
  <t:RadDocument.Styles>
    <s:StyleDefinition DisplayName="Code Block" IsCustom="False" IsDefault="False" IsPrimary="False" Name="CodeBlock" Type="Table" UIPriority="120">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LeftIndent="0" LineSpacing="1" LineSpacingType="AtLeast" SpacingAfter="0" SpacingBefore="0" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Courier New" FontSize="13.3333333333333" />
      </s:StyleDefinition.SpanStyle>
      <s:StyleDefinition.TableStyle>
        <s:TableProperties Borders="1,Single,#FF000000,none,," CellPadding="5,0,5,0">
          <s:TableProperties.TableLook>
            <t:TableLook />
          </s:TableProperties.TableLook>
        </s:TableProperties>
      </s:StyleDefinition.TableStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Code Block Line" IsCustom="False" IsDefault="False" IsPrimary="False" Name="CodeBlockLine" Type="Paragraph" UIPriority="120">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LeftIndent="0" LineSpacing="1" LineSpacingType="AtLeast" SpacingAfter="0" SpacingBefore="0" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Courier New" FontSize="13.3333333333333" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Document Default Style" IsCustom="False" IsDefault="False" IsPrimary="True" Name="defaultDocumentStyle" Type="Default">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LineSpacing="1.15" SpacingAfter="12" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.SpanStyle>
        <s:SpanProperties FontFamily="Tahoma" FontSize="11" FontStyle="Normal" FontWeight="Normal" />
      </s:StyleDefinition.SpanStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Normal" IsCustom="False" IsDefault="True" IsPrimary="True" Name="Normal" Type="Paragraph" UIPriority="0" />
    <s:StyleDefinition BasedOnName="TableNormal" DisplayName="Table Grid" IsCustom="False" IsDefault="False" IsPrimary="False" Name="TableGrid" Type="Table" UIPriority="59">
      <s:StyleDefinition.ParagraphStyle>
        <s:ParagraphProperties LineSpacing="1" SpacingAfter="0" />
      </s:StyleDefinition.ParagraphStyle>
      <s:StyleDefinition.TableStyle>
        <s:TableProperties Borders="1,Single,#FF000000,none,,">
          <s:TableProperties.TableLook>
            <t:TableLook />
          </s:TableProperties.TableLook>
        </s:TableProperties>
      </s:StyleDefinition.TableStyle>
    </s:StyleDefinition>
    <s:StyleDefinition DisplayName="Table Normal" IsCustom="False" IsDefault="True" IsPrimary="False" Name="TableNormal" Type="Table" UIPriority="59">
      <s:StyleDefinition.TableStyle>
        <s:TableProperties CellPadding="5,0,5,0">
          <s:TableProperties.TableLook>
            <t:TableLook />
          </s:TableProperties.TableLook>
        </s:TableProperties>
      </s:StyleDefinition.TableStyle>
    </s:StyleDefinition>
  </t:RadDocument.Styles>
  <t:Section FooterBottomMargin="20" HasDifferentFirstPageHeaderFooter="True" HeaderTopMargin="20" PageMargin="48,48,48,48">
    <t:Section.Headers>
      <t:Headers>
        <t:Headers.Default>
          <t:Header IsLinkedToPrevious="False">
            <t:Header.Body>
              <t:RadDocument LayoutMode="Flow" LineSpacing="1.15" LineSpacingType="Auto" ParagraphDefaultSpacingAfter="12" ParagraphDefaultSpacingBefore="0" SelectedBibliographicStyleName="\APA.XSL" StyleName="defaultDocumentStyle">
                <t:RadDocument.ProtectionSettings>
                  <t:DocumentProtectionSettings EnableDocumentProtection="False" Enforce="False" HashingAlgorithm="None" HashingSpinCount="0" ProtectionMode="ReadOnly" />
                </t:RadDocument.ProtectionSettings>
                <t:Section FirstPageNumber="1">
                  <t:Paragraph FontSize="10.6666666666667">
                    <t:Paragraph.ParagraphSymbolPropertiesStyle>
                      <s:SpanProperties BaselineAlignment="Baseline" FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" />
                    </t:Paragraph.ParagraphSymbolPropertiesStyle>
                    <t:Span BaselineAlignment="Baseline" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" Text="vervolg van de brief betreffende  " />
                    <t:FieldRangeStart AnnotationID="1">
                      <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Patient.FullName§" />
                    </t:FieldRangeStart>
                    <t:Span BaselineAlignment="Baseline" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" Text="«MT:§Patient.FullName§»" />
                    <t:FieldRangeEnd AnnotationID="1" />
                    <t:Span BaselineAlignment="Baseline" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" Text=", blz. " />
                    <t:FieldRangeStart AnnotationID="2">
                      <t:PageField DisplayMode="Result" />
                    </t:FieldRangeStart>
                    <t:Span BaselineAlignment="Baseline" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" Text="2" />
                    <t:FieldRangeEnd AnnotationID="2" />
                    <t:Span BaselineAlignment="Baseline" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" Text=" van " />
                    <t:FieldRangeStart AnnotationID="3">
                      <t:NumPagesField DisplayMode="Result" />
                    </t:FieldRangeStart>
                    <t:Span BaselineAlignment="Baseline" FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Italic" FontWeight="Normal" ForeColor="#FF808080" Text="2" />
                    <t:FieldRangeEnd AnnotationID="3" />
                  </t:Paragraph>
                </t:Section>
              </t:RadDocument>
            </t:Header.Body>
            <t:Header.WatermarkSettings>
              <t:DocumentWatermarkSettings Type="NoWatermark" />
            </t:Header.WatermarkSettings>
          </t:Header>
        </t:Headers.Default>
        <t:Headers.First>
          <t:Header IsLinkedToPrevious="False">
            <t:Header.WatermarkSettings>
              <t:DocumentWatermarkSettings Type="NoWatermark" />
            </t:Header.WatermarkSettings>
          </t:Header>
        </t:Headers.First>
      </t:Headers>
    </t:Section.Headers>
    <t:Paragraph SpacingAfter="12" />
    <t:Table Borders="1,None,#FF000000,none,," GridColumnWidthsSerializationInfo="Fixed,162;Fixed,20;Fixed,552.301208496094" HasFixedStructure="False" LayoutMode="Fixed" PreferredWidth="Fixed,626" TableIndent="0">
      <t:Table.TableLook>
        <t:TableLook />
      </t:Table.TableLook>
      <t:TableRow Height="45.6666666666667">
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1">
          <t:Paragraph TextAlignment="Right" />
          <t:Paragraph TextAlignment="Right" />
        </t:TableCell>
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1">
          <t:Paragraph TextAlignment="Right" />
        </t:TableCell>
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="2">
          <t:Paragraph FontSize="13.3333333333333" LineSpacing="1">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="13.3333333333333" Text="&#x9;&#x9;&#x9;&#x9;&#x9;&#x9;Gent, " />
            <t:FieldRangeStart AnnotationID="1">
              <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§System.CurrentDate§" />
            </t:FieldRangeStart>
            <t:Span FontFamily="Calibri" FontSize="13.3333333333333" Text="27-07-2015" />
            <t:FieldRangeEnd AnnotationID="1" />
          </t:Paragraph>
          <t:Table Borders="1,None,#FF000000,none,," GridColumnWidthsSerializationInfo="Fixed,263;Fixed,254.600006103516" HasFixedStructure="False" LayoutMode="Fixed" PreferredWidth="Fixed,517.599975585938" StyleName="TableGrid" TableIndent="0">
            <t:Table.TableLook>
              <t:TableLook />
            </t:Table.TableLook>
            <t:TableRow Height="39.8320999145508">
              <t:TableCell ColumnSpan="1" Padding="5,0,5,0" PreferredWidth="Fixed,106" RowSpan="1">
                <t:Paragraph LineSpacing="1" />
              </t:TableCell>
              <t:TableCell ColumnSpan="1" Padding="5,0,5,0" PreferredWidth="Fixed,411.600006103516" RowSpan="1">
                <t:Paragraph LineSpacing="1">
                  <t:Span Text="&#x9;&#x9;" />
                </t:Paragraph>
                <t:Paragraph LineSpacing="1">
                  <t:Span Text="&#x9;&#x9;&#x9;" />
                </t:Paragraph>
                <t:Paragraph LineSpacing="1">
                  <t:FieldRangeStart AnnotationID="2" Tag="Body">
                    <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="Versturen naar" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
                  </t:FieldRangeStart>
                </t:Paragraph>
                <t:Paragraph LineSpacing="1">
                  <t:FieldRangeEnd AnnotationID="2" />
                </t:Paragraph>
              </t:TableCell>
            </t:TableRow>
            <t:TableRow Height="26.5547332763672">
              <t:TableCell ColumnSpan="1" Padding="5,0,5,0" PreferredWidth="Fixed,106" RowSpan="1">
                <t:Paragraph LineSpacing="1" />
              </t:TableCell>
              <t:TableCell ColumnSpan="1" Padding="5,0,5,0" PreferredWidth="Fixed,411.600006103516" RowSpan="1">
                <t:Paragraph LineSpacing="1" />
              </t:TableCell>
            </t:TableRow>
          </t:Table>
          <t:Paragraph FontSize="13.3333333333333">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph FontSize="13.3333333333333" LineSpacing="1" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontSize="13.3333333333333" Text=" " />
          </t:Paragraph>
          <t:Paragraph FontSize="13.3333333333333">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Table Borders="1,None,#FF000000,none,," GridColumnWidthsSerializationInfo="Fixed,91;Fixed,329" HasFixedStructure="False" LayoutMode="AutoFit" PreferredWidth="Fixed,420" StyleName="TableGrid" TableIndent="0">
            <t:Table.TableLook>
              <t:TableLook />
            </t:Table.TableLook>
            <t:TableRow>
              <t:TableCell ColumnSpan="1" Padding="5,0,5,0" PreferredWidth="Fixed,91" RowSpan="1">
                <t:Paragraph LineSpacing="1">
                  <t:Span FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" Text="Betreft:" UnderlineDecoration="Line" />
                </t:Paragraph>
              </t:TableCell>
              <t:TableCell ColumnSpan="1" Padding="5,0,5,0" PreferredWidth="Fixed,329" RowSpan="1">
                <t:Paragraph FontSize="11" LineSpacing="1">
                  <t:Paragraph.ParagraphSymbolPropertiesStyle>
                    <s:SpanProperties FontSize="11" />
                  </t:Paragraph.ParagraphSymbolPropertiesStyle>
                  <t:FieldRangeStart AnnotationID="3">
                    <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Patient.FullName§" />
                  </t:FieldRangeStart>
                  <t:Span FontSize="13.3333333333333" Text="Hulpiau Jean-Pierre Maurice" />
                  <t:FieldRangeEnd AnnotationID="3" />
                </t:Paragraph>
                <t:Paragraph FontSize="11" LineSpacing="1">
                  <t:Paragraph.ParagraphSymbolPropertiesStyle>
                    <s:SpanProperties FontSize="11" />
                  </t:Paragraph.ParagraphSymbolPropertiesStyle>
                  <t:FieldRangeStart AnnotationID="4">
                    <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Patient.Street§" />
                  </t:FieldRangeStart>
                  <t:Span FontSize="13.3333333333333" Text="Voldersstraat 78" />
                  <t:FieldRangeEnd AnnotationID="4" />
                </t:Paragraph>
                <t:Paragraph FontSize="11" LineSpacing="1">
                  <t:Paragraph.ParagraphSymbolPropertiesStyle>
                    <s:SpanProperties FontSize="11" />
                  </t:Paragraph.ParagraphSymbolPropertiesStyle>
                  <t:FieldRangeStart AnnotationID="5">
                    <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Patient.PostalCode§" />
                  </t:FieldRangeStart>
                  <t:Span FontSize="13.3333333333333" Text="9000" />
                  <t:FieldRangeEnd AnnotationID="5" />
                  <t:Span FontSize="13.3333333333333" Text=" " />
                  <t:FieldRangeStart AnnotationID="6">
                    <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Patient.City§" />
                  </t:FieldRangeStart>
                  <t:Span FontSize="13.3333333333333" Text="GENT" />
                  <t:FieldRangeEnd AnnotationID="6" />
                </t:Paragraph>
                <t:Paragraph FontSize="13.3333333333333" LineSpacing="1">
                  <t:Paragraph.ParagraphSymbolPropertiesStyle>
                    <s:SpanProperties FontSize="13.3333333333333" />
                  </t:Paragraph.ParagraphSymbolPropertiesStyle>
                  <t:Span FontSize="13.3333333333333" Text="°" />
                  <t:FieldRangeStart AnnotationID="7">
                    <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Patient.DateOfBirth§" />
                  </t:FieldRangeStart>
                  <t:Span FontSize="13.3333333333333" Text="01-10-1928" />
                  <t:FieldRangeEnd AnnotationID="7" />
                </t:Paragraph>
              </t:TableCell>
            </t:TableRow>
          </t:Table>
          <t:Paragraph FontSize="13.3333333333333">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph LineSpacing="1" SpacingAfter="12">
            <t:FieldRangeStart AnnotationID="8" Tag="Body">
              <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="ST:!brAanspreking" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
            </t:FieldRangeStart>
            <t:Span Text="Geachte collega," />
          </t:Paragraph>
          <t:Paragraph SpacingAfter="12">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontWeight="Bold" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph FontSize="13.3333333333333" LineSpacing="1" SpacingAfter="12">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:FieldRangeEnd AnnotationID="8" />
          </t:Paragraph>
          <t:Paragraph LineSpacing="1" SpacingAfter="2" SpacingBefore="0">
            <t:FieldRangeStart AnnotationID="9" Tag="Body">
              <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="Cyclo ergometrie" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
            </t:FieldRangeStart>
            <t:Span FontFamily="Tahoma" FontSize="14" FontWeight="Bold" Text="Cyclo ergometrie" UnderlineDecoration="Line" />
          </t:Paragraph>
          <t:Table Borders="0,None,#FF000000,none,," GridColumnWidthsSerializationInfo="Fixed,700" HasFixedStructure="False" LayoutMode="AutoFit" PreferredWidth="Auto" TableIndent="0">
            <t:Table.TableLook>
              <t:TableLook />
            </t:Table.TableLook>
            <t:TableRow>
              <t:TableCell ColumnSpan="1" RowSpan="1">
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Protocol 40/10/1" />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Bereikt 100 Watt na 7 min. " />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Pols bereikt 88/min (65 % van voorspelde).   " />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Bloeddruk stijgt tot 200/80.  " />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Reden einde: vermoeid, dyspnoe.  " />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Geen angineuze bezwaren. Geen ST-T-wijzigingen. " />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Ritme: sinusritme, enkele premature ventriculaire extrasystolen. " />
                </t:Paragraph>
                <t:Paragraph SpacingAfter="0" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Besluit: Maximale ergometrie.  Electrocardiografisch negatief en klinisch negatief. " />
                </t:Paragraph>
              </t:TableCell>
            </t:TableRow>
          </t:Table>
          <t:Paragraph />
          <t:Paragraph FontSize="13.3333333333333" LineSpacing="1" SpacingAfter="2" SpacingBefore="0">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:FieldRangeEnd AnnotationID="9" />
            <t:FieldRangeStart AnnotationID="10" Tag="Body">
              <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="Ondertekening" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
            </t:FieldRangeStart>
          </t:Paragraph>
          <t:Table Borders="0,None,#FF000000,none,," GridColumnWidthsSerializationInfo="Fixed,800" HasFixedStructure="False" LayoutMode="AutoFit" PreferredWidth="Auto" TableIndent="0">
            <t:Table.TableLook>
              <t:TableLook />
            </t:Table.TableLook>
            <t:TableRow>
              <t:TableCell ColumnSpan="1" RowSpan="1">
                <t:Paragraph SpacingAfter="2" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Dr. Gorré Frauke" />
                </t:Paragraph>
              </t:TableCell>
            </t:TableRow>
            <t:TableRow>
              <t:TableCell ColumnSpan="1" RowSpan="1">
                <t:Paragraph SpacingAfter="2" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="Cardioloog" />
                </t:Paragraph>
              </t:TableCell>
            </t:TableRow>
            <t:TableRow>
              <t:TableCell ColumnSpan="1" RowSpan="1">
                <t:Paragraph SpacingAfter="2" SpacingBefore="0">
                  <t:Span FontFamily="Tahoma" FontSize="12" Text="1/36613/60/730" />
                </t:Paragraph>
              </t:TableCell>
            </t:TableRow>
          </t:Table>
          <t:Paragraph />
          <t:Paragraph FontSize="13.3333333333333" LineSpacing="1" SpacingAfter="2" SpacingBefore="0">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:FieldRangeEnd AnnotationID="10" />
          </t:Paragraph>
          <t:Paragraph LineSpacing="1" SpacingAfter="12">
            <t:FieldRangeStart AnnotationID="11" Tag="Body">
              <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="Bestanden" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
            </t:FieldRangeStart>
          </t:Paragraph>
          <t:Paragraph LineSpacing="1" SpacingAfter="12">
            <t:FieldRangeEnd AnnotationID="11" />
            <t:FieldRangeStart AnnotationID="12" Tag="Body">
              <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="ST:!brStatusbrief" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
            </t:FieldRangeStart>
            <t:Span Text=" Deze brief is nog niet gevalideerd." />
          </t:Paragraph>
          <t:Paragraph FontSize="13.3333333333333" LineSpacing="1" SpacingAfter="12">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:FieldRangeEnd AnnotationID="12" />
          </t:Paragraph>
        </t:TableCell>
      </t:TableRow>
      <t:TableRow Height="739.976806640625">
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1" TextAlignment="Right" VerticalAlignment="Center">
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontStyle="Normal" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:FieldRangeStart AnnotationID="13" Tag="Body">
              <t:CustomMergeField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" PropertyPath="ST:!brCoordinaten" xmlns:t="clr-namespace:MedLucas.Helpers;assembly=MedLucas" />
            </t:FieldRangeStart>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontStyle="Normal" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontStyle="Normal" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontStyle="Normal" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="13.3333333333333" FontStyle="Normal" FontWeight="Bold" ForeColor="#FF404040" Text="DIENST CARDIOLOGIE" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontStyle="Normal" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontStyle="Normal" FontWeight="Normal" ForeColor="#FF404040" Text="Diensthoofd: Dr.Vandekerckhove" />
          </t:Paragraph>
          <t:Paragraph FontSize="13.3333333333333" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" Text="____________________" />
          </t:Paragraph>
          <t:Paragraph FontSize="13.3333333333333" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. A.K. Ascoop" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Hartfalen- Cardiale Revalidatie" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. C. Borin" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Intensieve Zorgen" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. P. Cambier" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Interventionele Cardiologie" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. F. Gorré" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Cardiale Beeldvorming" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. K. Hermans" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Intensieve Zorgen" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Inteventionele  Cardiologie" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. J. Nimmegeers" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Intensieve Zorgen " />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Interventionele Cardiologie" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. K. Van Beeumen" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Pacing en ritmestoornissen" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. H. Vandekerckhove" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Hartfalen - Cardiale Revalidatie" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Dr. H. Verloove" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" ForeColor="#FF404040" Text="Pacing en ritmestoornissen" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Prof. Dr. Y. Van Belleghem" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="Consulent Cardiochirurgie" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="13.3333333333333" ForeColor="#FF404040" Text="                                                                                                                                               " />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Alle afspraken" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="09/224 64 00" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="09/224 64 01" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Uitsluitend artsen" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="09/224 50 98" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Polikliniek Zelzate" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="Bloemenboslaan 26 - Zelzate" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Consultatie Krijgslaan" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="6.66666666666667" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="Krijgslaan 155 - Gent" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="10.6666666666667" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Bold" ForeColor="#FF404040" Text="Consultatie Lochristi" />
          </t:Paragraph>
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FlowDirection="LeftToRight" FontFamily="Calibri" FontSize="13.3333333333333" FontWeight="Normal" ForeColor="#FF404040" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:Span FontFamily="Calibri" FontSize="10.6666666666667" FontWeight="Normal" ForeColor="#FF404040" Text="Lichtelarestraat 2 - Lochristi" />
          </t:Paragraph>
          <t:Paragraph TextAlignment="Right" />
          <t:Paragraph AutomaticSpacingAfter="False" AutomaticSpacingBefore="False" Background="#00FFFFFF" FirstLineIndent="0" FontSize="13.3333333333333" LeftIndent="0" LineSpacing="1.15" LineSpacingType="Auto" RightIndent="0" SpacingAfter="0" SpacingBefore="0" TextAlignment="Right">
            <t:Paragraph.ParagraphSymbolPropertiesStyle>
              <s:SpanProperties FontSize="13.3333333333333" />
            </t:Paragraph.ParagraphSymbolPropertiesStyle>
            <t:FieldRangeEnd AnnotationID="13" />
          </t:Paragraph>
        </t:TableCell>
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1">
          <t:Paragraph TextAlignment="Right" />
        </t:TableCell>
      </t:TableRow>
      <t:TableRow Height="20">
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1">
          <t:Paragraph TextAlignment="Right" />
        </t:TableCell>
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1">
          <t:Paragraph TextAlignment="Right" />
        </t:TableCell>
        <t:TableCell Borders="0,Inherit,#FF000000,none,," ColumnSpan="1" Padding="5,0,5,0" RowSpan="1">
          <t:Paragraph>
            <t:Span FontFamily="Calibri" FontSize="13.3333333333333" Text="CC: " />
            <t:FieldRangeStart AnnotationID="14">
              <t:DocumentVariableField DateTimeFormatting="" DisplayMode="Result" GeneralFormatting="" NumericFormatting="" VariableName="§Fiche.CCAddresses§" />
            </t:FieldRangeStart>
            <t:FieldRangeEnd AnnotationID="14" />
          </t:Paragraph>
        </t:TableCell>
      </t:TableRow>
    </t:Table>
    <t:Paragraph SpacingAfter="12" />
    <t:Paragraph SpacingAfter="12" />
  </t:Section>
</t:RadDocument>

Fabio
Top achievements
Rank 1
 answered on 08 Dec 2020
4 answers
398 views

Hi

I'm trying to update from Telerik.Documents.Spreadsheet 2020.3.915 to 2020.3.1019

 

 

I get the following exception:

    System.IO.FileNotFoundException : Could not load file or assembly 'Telerik.Zip, Version=2020.3.1019.20, Culture=neutral, PublicKeyToken=5803cfa389c90ce7'. The system cannot find the file specified.

Bart
Top achievements
Rank 1
Veteran
 answered on 07 Dec 2020
7 answers
270 views

Hi,

I am asking a question regarding the processing of PDF. I am generating a PDF using RadFixedDocument through asp.net mvc. I want to prevent users from copying my contents in PDF. I have added in watermark on my document but users are still able to copy and paste text in the pdf to a text document. I tried to look for related materials in the listed Telerik resources but to no avail.

https://demos.telerik.com/aspnet-mvc/pdfprocessing
https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/overview

How am I able to prevent users who download my PDF from copy pasting the content inside the pdf to another document? 

Thanks in advance.

Martin
Telerik team
 answered on 03 Dec 2020
2 answers
434 views

Hi Everyone,

i am trying to convert an HTML to PDF using RadFlowDocument. In HTML we have Greek Letters in the text and the export seems to ingore them and they are not printed in the final PDF.

 

This is a sample of my code:

<code>

string html = "<p>Greek Characters</p><p>Ε</p>";

var providerPdf = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider();
var memoryStream = new MemoryStream();

 var providerHtml = new Telerik.Windows.Documents.Flow.FormatProviders.Html.HtmlFormatProvider();
providerHtml.ExportSettings.ImagesExportMode = Telerik.Windows.Documents.Flow.FormatProviders.Html.ImagesExportMode.Embedded;
providerHtml.ExportSettings.ImageExporting += (s, e) =>
{
e.Handled = false;
                    e.Title = "Test image";
                    e.ExportSize = true;
                    e.AlternativeText = "You will see this text if the image is not loaded";
                };

                RadFlowDocument document = providerHtml.Import(finalHtml);
                providerPdf.Export(document, memoryStream);

                using (Stream output = File.OpenWrite(@"C:\TempThanasis\sample.pdf"))
                {
                    providerPdf.Export(document, output);
                }

 

</code>

 

Thanks

Dimitar
Telerik team
 answered on 03 Dec 2020
1 answer
101 views

Hi,

I am asking a question regarding the processing of PDF. I am generating a PDF using RadPDFProcessing through asp.net mvc. I want to prevent users from copying my contents in PDF after they have downloaded it. I have added in watermark on my document but users are still able to copy and paste text in the pdf to a text document. I tried to look for related materials in the listed Telerik resources but to no avail.
https://demos.telerik.com/aspnet-mvc/pdfprocessing
https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/overview

How am I able to prevent users who download my PDF from copy pasting the content inside the pdf to another document? 
Thanks in advance.

Martin
Telerik team
 answered on 27 Nov 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?