Skip to content

Commit eba70b3

Browse files
XAMARINANDROID-3933-Images removed
1 parent 6a352b1 commit eba70b3

5 files changed

+8
-7
lines changed

xamarin-android/SfCalendar/Populating-Events.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,16 @@ Agenda view mode
125125

126126
By using the [InlineAppointmentTextSize](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html#Com_Syncfusion_Calendar_MonthViewSettings_InlineAppointmentTextSize) property from the [MonthViewSettings](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html) class of SfCalendar` control, you can customize the text size for the appointment details text in inline and agenda view.
127127

128+
The following code explains how to customize the InlineAppointmentTextSize in Calendar InlineView.
129+
128130
{% highlight c# %}
129131
SfCalendar sfCalendar = new SfCalendar(this);
130132
sfCalendar.MonthViewSettings.InlineAppointmentTextSize = 20;
131133
sfCalendar.ShowEventsInline = true;
132134
sfCalendar.InlineViewMode = InlineViewMode.Inline;
133135
{% endhighlight %}
134136

135-
![InlineView with InlineAppointmentTextSize in Xamarin.Android Calendar](images/Xamarin.Android-Calendar-InlineView-InlineAppointmentTextSize.JPG)
137+
The following code explains how to customize the InlineAppointmentTextSize in Calendar AgendaView.
136138

137139
{% highlight c# %}
138140
SfCalendar sfCalendar = new SfCalendar(this);
@@ -141,30 +143,29 @@ By using the [InlineAppointmentTextSize](https://help.syncfusion.com/cr/xamarin-
141143
sfCalendar.ShowEventsInline = true;
142144
{% endhighlight %}
143145

144-
![AgendaView with InlineAppointmentTextSize in Xamarin.Android Calendar](images/Xamarin.Android-Calendar-AgendaView-InlineAppointmentTextSize.JPG)
145-
146146
### InlineAppointmentTimeTextSize
147147

148148
By using the [InlineAppointmentTimeTextSize](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html#Com_Syncfusion_Calendar_MonthViewSettings_InlineAppointmentTimeTextSize) property from the [MonthViewSettings](https://help.syncfusion.com/cr/xamarin-android/Com.Syncfusion.Calendar.MonthViewSettings.html) class of SfCalendar` control, you can customize the time text size for the appointment details time in both inline and agenda view.
149149

150+
The following code explains how to customize the InlineAppointmentTimeTextSize in Calendar InlineView.
151+
150152
{% highlight c# %}
151153
SfCalendar sfCalendar = new SfCalendar(this);
152154
sfCalendar.MonthViewSettings.InlineAppointmentTimeTextSize = 20;
153155
sfCalendar.ShowEventsInline = true;
154156
sfCalendar.InlineViewMode = InlineViewMode.Inline;
155157
{% endhighlight %}
156158

157-
![InlineView with InlineAppointmentTimeTextSize in Xamarin.Android Calendar](images/Xamarin.Android-Calendar-InlineView-InlineAppointmentTimeTextSize.JPG)
159+
160+
The following code explains how to customize the InlineAppointmentTimeTextSize in Calendar AgendaView.
158161

159162
{% highlight c# %}
160163
SfCalendar sfCalendar = new SfCalendar(this);
161164
sfCalendar.MonthViewSettings.InlineAppointmentTimeTextSize = 20;
162165
sfCalendar.InlineViewMode = InlineViewMode.Agenda;
163166
sfCalendar.ShowEventsInline = true;
164167
{% endhighlight %}
165-
166-
![AgendaView with InlineAppointmentTimeTextSize in Xamarin.Android Calendar](images/Xamarin.Android-Calendar-AgendaView-InlineAppointmentTimeTextSize.JPG)
167-
168+
168169
## Getting inline/agenda view appointment details
169170

170171
Using `InlineEvent` property from the `InlineItemTappedEventArgs` argument of `InlineItemTapped` event, you can get the month inline/agenda appointments details while tapping the specific appointment in inline/agenda view.

0 commit comments

Comments
 (0)