Displaying a single element/node ID
Displaying a single element/node ID
(OP)
I know how to turn the element or node IDs on for the entire model, but is there a way to select a single element or node and just turn that ID on?
I've searched through several tips and tricks tutorials and not been able to find this solution.
Thanks.
I've searched through several tips and tricks tutorials and not been able to find this solution.
Thanks.





RE: Displaying a single element/node ID
another day in paradise, or is paradise one day closer ?
RE: Displaying a single element/node ID
Sub Main
Dim App As femap.model
Set App = feFemap()
Dim eSet As femap.Set
Set eSet = App.feSet
Dim el As femap.Elem
Set el = App.feElem
Dim lab As femap.text
Set lab = App.feText
Dim eID As Long
Dim cent As Variant
If eSet.Select(FT_ELEM, True, "Select Elements to Label") <> FE_OK Then End
lab.ModelPosition = True
lab.AllViews = True
lab.DrawBorder = True
lab.BackColor = FCL_WHITE
While eSet.Next
eID = eSet.CurrentID
el.Get(eID)
el.GetCentroid(cent)
lab.vTextPosition = cent
lab.text = Str$(eID)
rc = lab.Put(lab.NextEmptyID)
Wend
rc = App.feViewRegenerate( 0 )
End Sub
RE: Displaying a single element/node ID
I'm not sure I get this, won't it still turn on the whole model? I'd like to be able to show the surrounding model for context, but it gets visually very cluttered when the labels are on.
RE: Displaying a single element/node ID
another day in paradise, or is paradise one day closer ?