AppendUnattributed adds str to the end of s. The new substring will be unattributed.
(str string)
| 383 | // AppendUnattributed adds str to the end of s. The new substring |
| 384 | // will be unattributed. |
| 385 | func (s *AttributedString) AppendUnattributed(str string) { |
| 386 | cs := C.CString(str) |
| 387 | defer freestr(cs) |
| 388 | C.uiAttributedStringAppendUnattributed(s.s, cs) |
| 389 | } |
| 390 | |
| 391 | // InsertAtUnattributed adds str to s at the byte position specified by |
| 392 | // at. The new substring will be unattributed; existing attributes will |
no test coverage detected