Posted by: Rafael Kuzminski
Problem 1:
I'm trying to write a CDK app where you can comment/uncomment the outline
code that is currently selected (anywhere in the app). As far as I have
figured out, there are no direct comment/uncomment methods in CDK like
cdkItem.Comment or cdkItem.Uncomment( ). How can I achieve that
functionality?
Problem 2:
I can insert a block of comments into my app like
* ! A
* ! B
* ! C
(using cdkItem.InsertFirstItem( cdkParentItem, CDK_IT_Comment, cdkNewItem )
but there's no way in having B intended under ! A WIHTOUT having the !
character like:
* ! A
* B
* ! C
I only get this:
* ! A
* ! B
* ! C
Is there a way to solve that somehow?
Regards
/Rafael