Questions on the size of the Telerik RadDocument table

I have a RadDocument and a table in this document.

If the user drags up to reduce the size of the line to the content, the lines will decrease after releasing and the size will be larger than the content.

This can be eliminated by dragging the row guide in the ruler, but this is a pretty suboptimal solution for end users.

Is there a way to prevent binding behavior?

EDIT

Further research shows that binding behavior is not displayed if the line starts at a certain height, starting at.

Perhaps a minimum size property is interfering somewhere? Although resizing with a guide still violates this.

+4
source share
1 answer

As far as I know about the Height property for TableRow, it is set only when importing a document that explicitly indicates the height of the rows of the table, you change the height of the TableRow using the DocumentRuler (or the thumbs that are shown when you hover over the table). In general, the document will take care of calculating the height of the table when you enter text in it, so in your case, I think that this is what causes the binding, because there is a minimum height. You can easily write code that sets the maximum height or minimum height. Also, I know that GridView has an event handler for rows that you might want to use GridView.

-1
source

All Articles