0

what is the meaning of prefix of 'k' or other prefix in inventor API

I tried posting in autodesk but those people also don't know

taher ali
  • 1
  • 2
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jan 04 '23 at 12:49

1 Answers1

0

Prefixing with lowercase "k" is generally used to indicate a constant. This is evident when looking at all of Inventor's enums. Example:

ButtonTypeEnum.kAcceptButtonType 
ButtonTypeEnum.kCancelButtonType 
ButtonTypeEnum.kEditButtonType

See this stackoverflow post: What is the significance of starting constants with 'k'?