Set BusyIndicator Header
5 Jun 2020 / 1 minute to read
SfBusyIndicator provides option to set the text that indicates the information related to loading. This can be done using Title
property.
SfBusyIndicator busyindicator = new SfBusyIndicator();
busyindicator.AnimationType = SFBusyIndicatorAnimationType.SFBusyIndicatorAnimationTypeBattery;
busyindicator.Title = (NSString)"Loading...";
BusyIndicator with title
FontFace
FontFace
can be used to define the font style and font size of the title that is displayed beneath the animation.
SfBusyIndicator busyindicator = new SfBusyIndicator();
busyindicator.AnimationType = SFBusyIndicatorAnimationType.SFBusyIndicatorAnimationTypeBattery;
busyindicator.Title = "Loading...";
busyindicator.FontFace = Typeface.create("Arial",Typeface.NONE);
BusyIndicator with font face
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page