Browse By Tags

  • [CONNECT Update 16 VBA] TextNodeElement.TextLine assignment loses TextElement Symbology

    As you know, a VBA TextNodeElement is a container of TextElement s. Property TextNodeElement.TextLine lets us get or set the text contained in one of those TextElement s. That property correctly assigns the text in the specified line of the TextNodeElement…
  • [CONNECT .NET] TextElement.Description: too much information!

    I'm extracting element information from various kinds of element that contain text. I want to describe the element (e.g. Note Element, Text Element, Text Node Element). Element.Description does what I want, except for TextElement . With TextElement…
  • [CONNECT .NET] Text Handler Classes

    The DgnPlatformNet help documents the TextHandlerBase class. It has this note: Base class for text element handlers; should NOT be sub-classed directly (see TextNodeHandler and TextElemHandler) . Unfortunately, neither TextNodeHandler nor TextElemHandler…
  • [i-model SDK] TextElement PartIds Purpose

    Hello, I've been working on adding i-model reading/writing support to our product and have a quick question about the SDK (v1). On the TextElement and TextNodeElement interface there is the GetTextPartIds which takes a TextQueryOptions as an arguement…
  • VBA -> BackgroundFillColor

    Here is my code so far: Public Function add_Blackout() On Error GoTo add_Blackout_Error Dim oEnumerator As ElementEnumerator Set oEnumerator = ActiveModelReference.GetSelectedElements oEnumerator.BuildArrayFromContents oEnumerator…