If to Append texts into a CSbuilder line by line in a loop with the trailing space... is it possible to remove\replace or trim the result before applying the builder ?
cs.Append is used inside the loop. During the loop - the cs collects images, links, texts... delimited by the spaces, so the latest space is a part of the CSBuilder object.
I delimite cs' appended parts by the spaces, but the latest space is not needed, it influences to the container size.
So, editing CSBuilder is not possible, as i understand, and need _not_to_append the space.
Can't you add items in the form space+item instead of item+space? This way you need just to init the cs with a no-leading space item than add as may items as you need with your loop and the end result will be a cs not space terminated.