RichString.Add Method
Assembly: Topten.RichTextKit.dll
Namespace: Topten.RichTextKit
Declaring Type: RichString
Overloads
Add(string)
Append text to this RichString
public RichString Add(string text);
Parameters
string text | The text to append |
Returns
RichString |
Add(string, string, Nullable<float>, Nullable<int>, Nullable<SkiaSharp.SKFontStyleWidth>, Nullable<bool>, Nullable<UnderlineStyle>, Nullable<StrikeThroughStyle>, Nullable<float>, Nullable<SkiaSharp.SKColor>, Nullable<SkiaSharp.SKColor>, Nullable<SkiaSharp.SKColor>, Nullable<float>, Nullable<float>, Nullable<float>, Nullable<FontVariant>, Nullable<TextDirection>)
Adds text with various style attributes changed
public RichString Add(string text, string fontFamily = null, Nullable<float> fontSize = null, Nullable<int> fontWeight = null, Nullable<SkiaSharp.SKFontStyleWidth> fontWidth = null, Nullable<bool> fontItalic = null, Nullable<UnderlineStyle> underline = null, Nullable<StrikeThroughStyle> strikeThrough = null, Nullable<float> lineHeight = null, Nullable<SkiaSharp.SKColor> textColor = null, Nullable<SkiaSharp.SKColor> backgroundColor = null, Nullable<SkiaSharp.SKColor> haloColor = null, Nullable<float> haloWidth = null, Nullable<float> haloBlur = null, Nullable<float> letterSpacing = null, Nullable<FontVariant> fontVariant = null, Nullable<TextDirection> textDirection = null);
Parameters
string text | The text to append |
string fontFamily = null | The new font family |
Nullable<float> fontSize = null | The new font size |
Nullable<int> fontWeight = null | The new font weight |
Nullable<SkiaSharp.SKFontStyleWidth> fontWidth = null | The new font width |
Nullable<bool> fontItalic = null | The new font italic |
Nullable<UnderlineStyle> underline = null | The new underline style |
Nullable<StrikeThroughStyle> strikeThrough = null | The new strike-through style |
Nullable<float> lineHeight = null | The new line height |
Nullable<SkiaSharp.SKColor> textColor = null | The new text color |
Nullable<SkiaSharp.SKColor> backgroundColor = null | The new background color |
Nullable<SkiaSharp.SKColor> haloColor = null | The new halo color |
Nullable<float> haloWidth = null | The new halo width |
Nullable<float> haloBlur = null | The new halo blur width |
Nullable<float> letterSpacing = null | The new character spacing |
Nullable<FontVariant> fontVariant = null | The new font variant |
Nullable<TextDirection> textDirection = null | The new text direction |
Returns
RichString | A reference to the same RichString instance |