Message 1 of 7
iLogic Rename detail view without renaming in tree

Not applicable
05-20-2020
12:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello all,
I´m trying to write a code which will rename detail in drawing, but not in tree.
So option:
oView.Name = .....
isn´t right way.
I´m able to rename detail above detail name via:
oView.ShowLabel = True oStringItem = ..... oStringScale = "<Br/><StyleOverride FontSize='0,4'> (<DrawingViewScale/>) </StyleOverride>" oView.Label.FormattedText = oStringItem & oStringScale
But the name on "text leader" is still the same like on tree. I tried:
Dim oItemValue As String oItemValue = "the same like in oStringItem"
Is possible to change name of detail without changing name in tree? I need this, because I´m controling views (supress, unsupress) via detail name from tree.
Thanks a lot.