TextUtils.Ellipsize Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Ellipsize(String, TextPaint, Single, TextUtils+TruncateAt) |
Returns the original text if it fits in the specified width given the properties of the specified Paint, or, if it does not fit, a truncated copy with ellipsis character added at the specified edge or center. |
Ellipsize(String, TextPaint, Single, TextUtils+TruncateAt, Boolean, TextUtils+IEllipsizeCallback) |
Returns the original text if it fits in the specified width given the properties of the specified Paint, or, if it does not fit, a truncated copy with ellipsis character added at the specified edge or center. |
Ellipsize(String, TextPaint, Single, TextUtils+TruncateAt)
Returns the original text if it fits in the specified width given the properties of the specified Paint, or, if it does not fit, a truncated copy with ellipsis character added at the specified edge or center.
public static string? Ellipsize (string? text, Android.Text.TextPaint? p, float avail, Android.Text.TextUtils.TruncateAt? where);
static member Ellipsize : string * Android.Text.TextPaint * single * Android.Text.TextUtils.TruncateAt -> string
Parameters
- text
- String
- avail
- Single
- where
- TextUtils.TruncateAt
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Ellipsize(String, TextPaint, Single, TextUtils+TruncateAt, Boolean, TextUtils+IEllipsizeCallback)
Returns the original text if it fits in the specified width given the properties of the specified Paint, or, if it does not fit, a truncated copy with ellipsis character added at the specified edge or center.
public static string? Ellipsize (string? text, Android.Text.TextPaint? paint, float avail, Android.Text.TextUtils.TruncateAt? where, bool preserveLength, Android.Text.TextUtils.IEllipsizeCallback? callback);
static member Ellipsize : string * Android.Text.TextPaint * single * Android.Text.TextUtils.TruncateAt * bool * Android.Text.TextUtils.IEllipsizeCallback -> string
Parameters
- text
- String
- paint
- TextPaint
- avail
- Single
- where
- TextUtils.TruncateAt
- preserveLength
- Boolean
- callback
- TextUtils.IEllipsizeCallback
Returns
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.