• [CONNECT Update 17 C#] Navigating a TextBlock

    TextBlock Class From the DgnPlatformNet help document: In the TextBlock DOM, this is the master object that represents a piece of text as a whole, and is the primary high-level object used to deal with multi-line, formatted text (and is also generally…
  • RE: [CONNECT C++] Possible to build std::vector<> of CaretCP or CaretPtr ?

    Unknown said: I've looked at RunRange, but can't figure our how to "get" one. I agree. The text API is well obfuscated . We could do with more examples. RunRange Construction You can construct a RunRange from a TextBlock or a Start Caret/End Caret…
  • RE: [CONNECT C++] Possible to build std::vector<> of CaretCP or CaretPtr ?

    Unknown said: std::vector<CaretCP> startMatchCaret; std::vector<CaretCR> startMatchCaret; The ' C ' in CaretCP and CaretCR means const . That is, read-only. By definition a reference such as CaretCR is a bad candidate for a standard container because…