3.0.0 A string that has associated attributes for portions of its text.
import AttributedString from '@smartface/native/ui/attributedstring'; var attributeString = new AttributedString(); attributeString.string = " Third"; attributeString.link = "Third Link"; attributeString.backgroundColor = Color.RED; attributeString.underline = true; attributeString.font = Font.create("Times New Roman",30,Font.NORMAL); attributeString.ios.underlineColor = Color.YELLOW;
Gets/sets underlineColor on AttributedString.
3.0.0
Gets/sets strikethroughColor on AttributedString.
3.2.1
Generated using TypeDoc
Since
3.0.0 A string that has associated attributes for portions of its text.
Example