![]() |
#1
|
|||
|
|||
![]()
I've got stuck on this one point...
I want to retrieve one of the Object Data fields... Kinda like.... myBitMapData = OrigSelection.ObjectData("Profile").Value I'm just not sure how to get existing data back and into a var. Yani |
#2
|
||||
|
||||
![]()
That's pretty much exactly what you need to do. The only thing to keep in mind is that you can't perform this on the Selection as the selection itself doesn't have any data associated with it. It is the individual shapes in the selection that carry the data, so you need to either loop through all of the shapes in the selection to get the data from them, or, if you know that the selection has only one shape in it, you can use ActiveShape to get to that selected shape:
Code:
myData = ActiveShape.ObjectData("Profile").Value |
![]() |
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 |
data to textboxes VBA? | olympiatr | CorelDRAW/Corel DESIGNER VBA | 1 | 27-06-2005 07:41 |
is it possible import data from datagrid columns? | olympiatr | CorelDRAW/Corel DESIGNER VBA | 0 | 12-01-2005 17:20 |
Is Corel to Excel data exchange possible? | alex69 | CorelDRAW/Corel DESIGNER VBA | 8 | 24-06-2004 05:52 |
Read Data from Excel File | LxRAE | CorelDRAW/Corel DESIGNER VBA | 5 | 14-04-2004 03:10 |
reading data from file and generate "labels" | LxRAE | CorelDRAW/Corel DESIGNER VBA | 4 | 23-01-2004 05:05 |