Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Geronymo

Pages: [1]
1
General Board / Embedding fonts in PDF report
« on: June 05, 2013, 07:11:49 pm »
Hi all,

is it possible to embed fonts in a pdf report?
Currently we first generate an rtf report and than print it with an external pdf printing tool in order to embed our fonts in the pdf file.
It would be nice to avoid these manual steps...

Update:
It seems that EA uses "Sub Systems RTF to PDF converter" (rps81.dll) module to create the pdf reports, which actually supports embedded fonts.

So is there any chance to activate this option?


Best regards

2
Hi,

I use Repository.RunModelSearch("", "", "", searchResults) to append my custom search results to the result list in Enterprise Architect.
The results are accessible (e.g. "Find in Project Browser" works) but I can't drag them directly from the list in order to drop them on a diagram.
Is this not possible or do I have to add some special information to the searchResults string?

My searchResults is constructed like this:
<ReportViewData UID="Custom Search">
<Fields>
    <Field name='CLASSGUID'/>
    <Field name='CLASSTYPE'/>
    <Field name='Alias'/>
    <Field name='Object'/>
    <Field name='Type'/>
    <Field name='Version'/>
    <Field name='Status'/>
    <Field name='StereoType'/>
    <Field name='Notes'/>
</Fields>
<Rows>
    <Row>            
    <Field name='CLASSGUID' value='{33C6FF93-C737-44ea-BCCB-D5CB5DC6FF5D}'/>
    <Field name='CLASSTYPE' value='Package'/>
    <Field name='Alias' value='Alias'/>
    <Field name='Object' value='Test'/>
    <Field name='Type' value='Package'/>
    <Field name='Version' value='1.0'/>
    <Field name='Status' value='Proposed'/>
    <Field name='StereoType' value=''/>
    <Field name='Notes' value='Test.'/>
</Row>
</Rows>
</ReportViewData>

Best regards

Pages: [1]