| **Navigation:**  [[abc library reference.htm|ABC Library Reference]] > EIPManagerClass > EIPManagerClass Methods >====== GetEdit (identify edit-in-place field) {{c6h0009.jpg|C6H0009.jpg}} ====== | [[clearcolumn reset column property values eipmanagerclass .htm|{{btn_prev_n.gif|Previous page}}]][[abc library reference.htm|{{btn_home_n.gif|Return to chapter overview}}]][[init initialize the eipmanagerclass object .htm|{{btn_next_n.gif|Next page}}]] | | || **GetEdit, VIRTUAL, PROTECTED** {{blk2blue.jpg|blk2blue.jpg}} The **GetEdit** method checks for a value in the Control field of the EditQueue. **Implementation:** GetEdit is called by the Next method, and returns one (1) if any value is in the Control field of the EditQueue, otherwise it returns zero (0). **Return Data Type:**     BYTE **Example:** **EIPManager.Next PROCEDURE** **  CODE** **  GET(SELF.EQ,RECORDS(SELF.EQ))** **? ASSERT(~ERRORCODE())** **  LastCol=SELF.EQ.Field** **  LOOP** **    CLEAR(SELF.EQ)** **    SELF.EQ.Field = SELF.Column** **    GET(SELF.EQ,SELF.EQ.Field)** **    IF ~ERRORCODE() AND SELF.GetEdit()** **      BREAK** **    END** **  !executable code** **See Also:**     [[eq list of edit in place controls .htm|EQ]], [[next get the next edit in place field .htm|Next]]