| View previous topic :: View next topic |
| Author |
Message |
abdun nabi sk General User

Joined: 18 Feb 2008 Posts: 10
|
Posted: Thu Feb 21, 2008 1:46 am Post subject: what are filter data available for exporting HTML? |
|
|
what are filter data available for exporting HTML?
Thanks
Abdun Nabi SK |
|
| Back to top |
|
 |
SergeM Super User

Joined: 09 Sep 2003 Posts: 3211 Location: Troyes France
|
|
| Back to top |
|
 |
hol.sten Super User


Joined: 14 Nov 2004 Posts: 3533 Location: Hamburg, Germany
|
Posted: Thu Feb 21, 2008 1:01 pm Post subject: Re: what are filter data available for exporting HTML? |
|
|
| abdun nabi sk wrote: | | what are filter data available for exporting HTML? |
If you are not interested in a FilterName list but in the available FilterData for a given FilterName, try this excellent post: http://www.oooforum.org/forum/viewtopic.phtml?t=51021
The post does not cover exporting HTML but it explains with OOo Basic code how to obtain the available FilterData for the GraphicExportFilter. |
|
| Back to top |
|
 |
abdun nabi sk General User

Joined: 18 Feb 2008 Posts: 10
|
Posted: Thu Feb 21, 2008 9:11 pm Post subject: Filter data for exporting HTML |
|
|
> /** 0 html
> 1 frames
> 2 webcast
> 3 kiosk
> */
> [property] long PublishMode;
>
> /**
> */
> [property] string IndexURL;
>
> /**
> 0 gif
> 1 jpg
> */
> [property] long Format;
>
> /**
> */
> [property] string Compression;
>
> /**
> */
> [property] long Width;
>
> /**
> */
> [property] long UseButtonSet;
>
> /**
> */
> [property] boolean IsExportNotes;
>
> /**
> */
> [property] boolean IsExportContentsPage;
>
> /**
> */
> [property] string Author;
>
> /**
> */
> [property] string EMail;
>
> /**
> */
> [property] string HomepageURL;
>
> /**
> */
> [property] string UserText;
>
> /**
> */
> [property] boolean EnableDownload;
>
> /**
> */
> [property] long BackColor;
>
> /**
> */
> [property] long TextColor;
>
> /**
> */
> [property] long LinkColor;
>
> /**
> */
> [property] long VLinkColor;
>
> /**
> */
> [property] long ALinkColor;
>
> /**
> */
> [property] boolean IsUseDocumentColors;
>
> /**
> */
> [property] long KioskSlideDuration;
>
> /**
> */
> [property] boolean KioskEndless;
>
> /**
> */
> [property] string WebCastCGIURL;
>
> /**
> */
> [property] string WebCastTargetURL;
>
> /**
> */
> [property] string WebCastScriptLanguage; |
|
| Back to top |
|
 |
|