sds_entlast

int sds_entlast (sds_name entity);


Determine which is the last object in the drawing.


This function retrieves the name of the last non-deleted object in your database. This is useful if you want to use the last object drawn.

The argument entity is set to the name of the object if this function succeeds.

This function returns one of the following: RTNORM or RTERROR. Check system variable ERRNO for the reason code.

Example

sds_name entity1;

char string1[512];

 

sds_getstring(0,"\nEnter to highlight the last object created: ",string1);

sds_entlast(entity1);

sds_redraw(entity1,3); // Highlights the last object.

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)

sds_entnext