ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 IEvolution (v8.0.0.0) LayerNotify LayerEvent problem

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
Deeron Posted - Nov 24 2021 : 05:16:25
Hi Nigel,

I have an comment.

The BeginResizing and BeginMoving layer events do not occur. Is there anything else that needs to be set?
According to the help, if I understand it correctly, it occurs when the user began to resize the layer (click down).
I understand correctly, the click down means that the mouse button should be pressed on the layer grip?

The other LayerEvents work, I can handle them within the LayerNotify event.


private void ieViewer1_LayerNotify(object sender, EventArgs e)
        {
                LayerNotifyEventArgs layerNotifyEventArgs = (LayerNotifyEventArgs)e;
            
                if (layerNotifyEventArgs.Event == LayerEvent.BeginMoving)
                {
                    Console.WriteLine("LAYER EVENT: " + layerNotifyEventArgs.Event.ToString() + ", LAYER INDEX: " + layerNotifyEventArgs.Layer.ToString());
                }
                else if (layerNotifyEventArgs.Event == LayerEvent.BeginResizing)
                {
                    Console.WriteLine("LAYER EVENT: " + layerNotifyEventArgs.Event.ToString() + ", LAYER INDEX: " + layerNotifyEventArgs.Layer.ToString());
                }
        }



Thanks.

Regards,
Deeron
2   L A T E S T    R E P L I E S    (Newest First)
Deeron Posted - Nov 24 2021 : 15:22:29
Cool. Thanks.
xequte Posted - Nov 24 2021 : 14:47:08
Hi Deeron

Checking the source, BeginMoving and BeginResizing are not supported in IEvolution. I will have them all added in the next IEvolution release.

Nigel
Xequte Software
www.imageen.com