Author Topic: Command break at point in .net  (Read 1399 times)

0 Members and 1 Guest are viewing this topic.

latour_g

  • Newt
  • Posts: 184
Command break at point in .net
« on: March 22, 2016, 10:54:18 AM »
Hi,

I'm trying to code this command in .net : ^C^C_break \_f \@ 

It doesn't seem to work with SendStringToExecute ?

I try something like that but it take the last point as soon as I start the command :

Code - C#: [Select]
  1. Document doc = AcadApp.DocumentManager.MdiActiveDocument;
  2. doc.SendStringToExecute("\x03\x03 _break \\_f \\@ \n", true, false, true);
« Last Edit: March 22, 2016, 10:58:26 AM by latour_g »

ChrisCarlson

  • Guest
Re: Command break at point in .net
« Reply #1 on: March 22, 2016, 10:58:57 AM »
Look at

breakPoints.Add()
« Last Edit: March 22, 2016, 11:16:00 AM by ChrisCarlson »