You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Sets the specified parameters and starts the kinetic animation.</summary>
192
+
/// <param name="self">The object on which this method will be run.</param>
193
+
/// <param name="name">An animation key that should be unique among its sibling and parent animations for the duration of the animation.</param>
194
+
/// <param name="callback">An action that is called with successive animation values.</param>
195
+
/// <param name="velocity">The amount that the animation progresses in each animation step. For example, a velocity of <c>1</c> progresses at the default speed.</param>
196
+
/// <param name="drag">The amount that the progression speed is reduced per frame. Can be negative.</param>
197
+
/// <param name="finished">An action to call when the animation is finished.</param>
190
198
#pragma warning disable CS1573// Parameter has no matching param tag in the XML comment (but other parameters do)
/// <summary>Returns a function that performs a linear interpolation between <paramref name="start"/> and <paramref name="end"/>.</summary>
218
+
/// <param name="start">The fraction into the current animation at which to start the animation.</param>
219
+
/// <param name="end">The fraction into the current animation at which to stop the animation.</param>
220
+
/// <param name="reverseVal">The inverse scale factor to use if <paramref name="reverse"/> is <see langword="true"/>.</param>
221
+
/// <param name="reverse">Whether to use the inverse scale factor in <paramref name="reverseVal"/> to deinterpolate.</param>
222
+
/// <returns>A function that performs a linear interpolation between <paramref name="start"/> and <paramref name="end"/>. Application developers can pass values between 0.0f and 1.0f to this function in order to recieve a value that is offset from <paramref name="start"/> or <paramref name="end"/>, depending on the value of <paramref name="reverse"/>, by the passed value times the distance between <paramref name="start"/> and <paramref name="end"/>.</returns>
223
+
/// <remarks>If <paramref name="reverse"/> is <see langword="true"/>, then the interpolation happens between <paramref name="start"/> and <paramref name="reverseVal"/>.</remarks>
/// <summary>Gets or sets a value that tells whether the item that is identified by the link entry is currently open.</summary>
48
+
/// <remarks>Application developers can set this value in <see cref="E:Microsoft.Maui.Controls.Application.PageAppearing"/> and <see cref="E:Microsoft.Maui.Controls.Application.PageDisappearing"/> methods to control whether the app link is shown for indexing or Handoff.</remarks>
/// <summary>Gets a nullable Boolean value that tells whether the bindable object is available to the accessibility system.</summary>
37
+
/// <param name="bindable">The bindable object whose status to check.</param>
38
+
/// <returns><see langword="true"/> if <paramref name="bindable"/> is available to the accessibility system. <see langword="false"/> or <see langword="null"/> if it is not.</returns>
/// <summary>Returns the element that labels <paramref name="bindable"/>, if <paramref name="bindable"/> does not label itself and if another element describes it in the UI.</summary>
50
+
/// <param name="bindable">The object whose label to find.</param>
51
+
/// <returns>The element that labels <paramref name="bindable"/>, if present.</returns>
/// <summary>Sets a Boolean value that tells whether the bindable object is available to the accessibility system.</summary>
81
+
/// <param name="bindable">The object ot add or remove from the accessibility system.</param>
82
+
/// <param name="value"><see langword="true"/> to make <paramref name="bindable"/> visible to the accessibility system. <see langword="false"/> to remove it from the system.</param>
/// <summary>Sets another element, such as a <see cref="T:Microsoft.Maui.Controls.Label"/> as the label for <paramref name="bindable"/>.</summary>
94
+
/// <param name="bindable">The object whose label to set.</param>
95
+
/// <param name="value">The visual element that will name <paramref name="bindable"/>, or <see langword="null"/> to make <paramref name="bindable"/> its own label.</param>
0 commit comments