...
Module | Short Description |
---|---|
DrawCirclesCommand | The sample DrawCirclesCommand introduces the most important technique: the command. A command name must be unique and can be executed by runCommand(). The command (DrawCircleCommand) shows how to access the document database, invoke user prompts and create entities using a custom tracker (CDrawCircleTracker). For more details please also check the comments in the source and header files. |
CustomEntity | The sample SpecialEntity demonstrates how a custom entity is created,registered and used. The custom entity inherits from base class OdDbCircle and is transformed visually by overwriting the entity's subWorldDraw() method. For more details please also check the comments in the source and header files. |
CreateText | Coming soon …The sample CreateText creates a new OdDbText and appends it to the active documents database. |
DrawTemporaryEntities | Coming soon … |
SelectObjects | Coming soon … |
DocumentCommands | Coming soon … |
GetClosestOsnap | Coming soon … |
DatabaseReactor | The sample DatabaseReactor emphasizes all necessary steps to register a DbDatabaseReactor database reactor to the active documents database. This database reactor will inform about all database transactions like objectAppended() or objectErased(). |
C++ Modules - OdRxModule and CFxCommand
This is a short summary about how a C++ module can be created, compiled and loaded into the host appliaction. All necessary steps are based on DrawCirclesCommand.
...