File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1114,7 +1114,8 @@ private void OnCellSelectionChanged()
1114
1114
/// <summary>
1115
1115
/// Scrolls the specified cell slot into view.
1116
1116
/// </summary>
1117
- internal async Task < TableViewCell > ScrollCellIntoView ( TableViewCellSlot slot )
1117
+ /// <param name="slot">The cell slot to scroll into view.</param>
1118
+ public async Task < TableViewCell > ScrollCellIntoView ( TableViewCellSlot slot )
1118
1119
{
1119
1120
if ( _scrollViewer is null || ! slot . IsValid ( this ) ) return default ! ;
1120
1121
@@ -1175,7 +1176,8 @@ void ViewChanged(object? _, ScrollViewerViewChangedEventArgs e)
1175
1176
/// <summary>
1176
1177
/// Scrolls the specified row into view.
1177
1178
/// </summary>
1178
- private async Task < TableViewRow ? > ScrollRowIntoView ( int index )
1179
+ /// <param name="index">The index of the row to scroll into view.</param>
1180
+ public async Task < TableViewRow ? > ScrollRowIntoView ( int index )
1179
1181
{
1180
1182
if ( _scrollViewer is null ) return default ! ;
1181
1183
You can’t perform that action at this time.
0 commit comments