Adding space between the segments in the editor

Is it possible to add a space (empty line) between segments in the editor for better visibility?

As you can see in the example below, there are cases where this feature could be very helpful

Screenshot of Trados Studio editor showing segments 2670 and 2671 without space in between. Segment 2670 ends with 'HEPCO-Motion:(2x)' and segment 2671 starts with 'Handschmierstelle:(1)'.

A space between segments 2670 and 2671 would make it easier to see where the first segment ends and the next starts.

Thanks



Generated Image Alt-Text
[edited by: Trados AI at 7:24 AM (GMT 0) on 29 Feb 2024]
emoji
Parents Reply
  • When you want to change the width of source segment, you have to use
    SourceSelection class first, at Selection class via Source property
    then
    Find IContentSelection instnace via Reflection
    and
    Apply Control property
    Now, you have IEditContorl instance
    using this one, you could handle the width of source segment.

    You cound consider this kind of steps for ""
    But, Unfortunately there are no way to modify that.

    The closest code goes like this;

    When you get "IEditContorl" instance
    Cast its type into Cotrol type
    and apply Parent property
    Now you cound use the famous "Padding" method.
    Usually it adds or removes Top, Left, Right, Bottom margins.
    So, it looks pretty promising.

    But, in RWS Trados Studio, it never works.
    RWS Trados Studio's Padding works as a whole, all Editor segments treat as an one element.
    So, you can not adjuct single segment.

    So, I replied "impossible"

    What is wrong with my reply ?

    emoji
Children