Ellié Computing Home Page
My Shopping Cart

Your shopping cart is empty

Display Cart

Call us at +1 586 62 ELLIE / +1 586 62 35543 Office Closed
sales@elliecomputing.com - Contact us


DocumentFrame object

 

 

 Prototype for DocumentFrame objects

Syntax

You cannot create a DocumentFrame. You can add a view to a document, it creates a DocumentFrame for you:

var mydoc;
var frame = add_view (mydoc);

You can obtain the frame which has the focus in the application this way:

var frame = current_frame;

Parameters

none.

Property Of

none.

Implemented In

ECMerge 2.1

Description

 DocumentFrame object are views on document. They contain a Coordinator object which is the key for the visual part of the differentiation process.

Properties

Property Description
coordinator Coordinator object. The coordinator handles the visual part of the differentiation process, handles user interface related to merge actions...

 

Methods

 none.

Examples

Example 1.

Giving the focus to a given frame.

var my_frame;
my_frame.coordinator.current_view.focus ( );

See Also 

 Coordinator object.