-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrap Text #14
Comments
@PaulMansour @mkromberg WrapText could be a boolean property for range namespaces. My idea is that the user can set a scalar, or a boolean vector, or boolean matrix , like how the current style settings work. r1.WrapText←1 ⍝ all cells will wrap text
r2.WrapText←1 0 0 0 1 0 ⍝ columns 1 and 5 will wrap text for a 6 column range
r3.WrapText← 6 6⍴1 0 0 0 1 0 ⍝ columns 1 and 5 will wrap text for a 6x6 range Is this sufficient, or are there other factors to consider with wrap text? |
That's fine. That's all one does in the Excel object model. In fact less, as I think you can only set WrapText to 1 for a entire range, not for individual cells within a range. |
#15 has been updated with relevant information pertaining to this issue. Attributes added, in testing. |
Options should be added to allow the user to set the wrap text property to a range.
Wrap text requires the same extension to cellXfs XML generation found in StyleXML. See #15
The text was updated successfully, but these errors were encountered: