Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi,
My basic requirement is to create a layer in drawing and add notes to them using a creo parametric toolkit application in c++.
I have created later using
ProMdl drwMdl;
ProName LayerName = {'\0'};
ProLayer Test_layer;
ProLayerItem Test_layeritem;
status = ProMdlCurrentGet(&drwMdl);
ProStringToWstring(LayerName, "SampleLayer");
status = ProLayerCreate(drwMdl, LayerName, &Test_layer);
status = ProLayerItemInit(PRO_LAYER_NOTE, 1, drwMdl, &Test_layeritem);
status = ProLayerItemAdd(&Test_layer, &Test_layeritem);
status = ProLayerDisplaystatusSet(&Test_layer, PRO_LAYER_TYPE_BLANK);
status = ProLayerDisplaystatusSave(drwMdl);
And yes I am able to create layer.
Now i want to add notes to it.
Is it possible ?
I could not find any direct api to add notes into the layer. Please guide me.