Reputation: 805
I have some components in the component page . when i select any component it should show the memory size of the selected component in a message box. How can i achieve this?
Upvotes: 0
Views: 545
Reputation: 76693
What you are asking is not possible (or could be but in a very, very difficult way). The component size is stored internally in the TSetupComponentEntry
record in each component item ItemObject
, which is due to a lack of missing pointer support impossible to access directly.
Upvotes: 1