Forums

Welcome Guest Search | Active Topics | Members

Flip Options
undead80
Posted: Monday, January 28, 2008 4:44:43 PM
Rank: Member
Groups: Member

Joined: 1/8/2008
Posts: 28
Points: 84
Hi,

Is that possible to flip the text and image in horizontal and vertical in VObject?

Please advice.

Thanks.
Alex Kon
Posted: Wednesday, January 30, 2008 4:33:13 AM
Rank: Advanced Member
Groups: Administration , Member

Joined: 1/31/2005
Posts: 385
Points: 400
Hello,

Do you mean something like that?

Code:
vObject.Transform.Scale(-1, 1, MatrixOrder.Append); //horizontal flip
vObject.Transform.Scale(1, -1, MatrixOrder.Append); //vertical flip


Best wishes, Alex.
undead80
Posted: Sunday, February 03, 2008 9:20:29 PM
Rank: Member
Groups: Member

Joined: 1/8/2008
Posts: 28
Points: 84
Alex Kon wrote:
Hello,

Do you mean something like that?

Code:
vObject.Transform.Scale(-1, 1, MatrixOrder.Append); //horizontal flip
vObject.Transform.Scale(1, -1, MatrixOrder.Append); //vertical flip


Hi,

I think this will only flip the image and not the text?
Alex Kon
Posted: Thursday, February 07, 2008 2:17:53 AM
Rank: Advanced Member
Groups: Administration , Member

Joined: 1/31/2005
Posts: 385
Points: 400
Hello,

No, this will flip any object across vertical or horizontal axis - it is math which is common for all VObjects. Here is more detailed code for vertical flip:

Code:

IVObject obj = _mlv.CurrentDesigner.VObjects[0];

RectangleF bounds = obj.GetTransformedVObjectBounds();
obj.Transform.Translate(-bounds.X, -bounds.Y, MatrixOrder.Append);
obj.Transform.Scale(-1, 1, MatrixOrder.Append);
obj.Transform.Translate(bounds.X + bounds.Width, bounds.Y, MatrixOrder.Append);
obj.Update();



Best wishes, Alex.
undead80
Posted: Wednesday, February 13, 2008 8:52:09 AM
Rank: Member
Groups: Member

Joined: 1/8/2008
Posts: 28
Points: 84
Thanks !! Perfect !!
Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

YAFVision Theme Created by Jaben Cargman (Tiny Gecko)
Yet Another Forum.net version 1.9.1.6 running under Cuyahoga.
Copyright © 2003-2006 Yet Another Forum.net. All rights reserved.