![]() |
#1
|
|||
|
|||
![]()
Hi,
I have multipage coreldraw files which I would like to export to SVG. I know how to export the multipage files as seperate SVG files, but I would like to read text identifers in the top left and top right hand corners of each page to use as metadata within the SVG. Is there a function in VBA which reads the contents of a text box or read the text from a corel draw page? Thanks... |
#2
|
||||
|
||||
![]()
Sure you can find the text on your page, here is a very simple example of finding the text on your page and returning each shape as a message box.
Code:
Sub FindText() Dim s As Shape For Each s In ActivePage.FindShapes(, cdrTextShape) MsgBox s.Text.Story Next s End Sub |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Center a text vertically in VBA Corel Draw | JFJ | Macros/Add-ons | 2 | 22-03-2011 18:12 |
Reading text file, one character at a time | CWCN | CorelDRAW/Corel DESIGNER VBA | 1 | 16-10-2008 14:24 |
Need macro to number files sequentially in Corel Draw | opinionsrfun | CorelDRAW/Corel DESIGNER VBA | 21 | 04-09-2007 11:35 |
Reading from an Excel and Putting it into Corel | all_ashish | CorelDRAW/Corel DESIGNER VBA | 6 | 23-04-2007 05:33 |
Reading Font Properties from selected text in CD9 | sherman01 | CorelDRAW/Corel DESIGNER VBA | 2 | 24-11-2004 08:59 |