It should be theoretically possible (expose autocad_entity_handle via AttributeExposer) but FME follows the rule that handles are unique within a drawing.
Imagine you read in 2 drawings and some features come in with the same handle. How would the writer handle that? (Pun intended 😁)
In the example below I read the same dwg file twice. Notice the duplicate handles. If FME preserves them, it would result in an invalid dwg definition.
This article explains the behavior of handles and names in Autocad: About Entity Handles and Their Uses (AutoLISP) | AutoCAD for Mac | Autodesk Knowledge Network
I understand the concept of handles and risk of duplication. If I take this into consideration when writing (such as reading and writing one drawing at a time, it should be avoided. I thought I'd tried the exposer, but when I write, the handle is still new. I'll check again.
I understand the concept of handles and risk of duplication. If I take this into consideration when writing (such as reading and writing one drawing at a time, it should be avoided. I thought I'd tried the exposer, but when I write, the handle is still new. I'll check again.
Maybe someone from Safe can be of more help here.