/// bool res = feedback.IsSupportedPattern(FeedbackType.Vibration, "Tap");
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
public bool IsSupportedPattern(FeedbackType type, String pattern)
{
bool supported = false;
}
/// <summary>
- /// Plays a specific feedback pattern.
+ /// Plays specific type of reactions that are pre-defined feedback pattern.
/// </summary>
/// <remarks>
/// To play Vibration type, app should have http://tizen.org/privilege/haptic privilege.
/// feedback.Play(FeedbackType.All, "Tap");
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
+ /// <seealso cref="Feedback.Stop()"/>
public void Play(FeedbackType type, String pattern)
{
int number;
}
/// <summary>
- /// Stops to play the feedback.
+ /// Stops various types of reactions from the feedback module.
/// </summary>
/// <remarks>
/// To stop vibration, the application should have http://tizen.org/privilege/haptic privilege.
/// Feedback1.Stop();
/// </code>
/// </example>
+ /// <seealso cref="Feedback.Play(FeedbackType,String)"/>
public void Stop()
{
Interop.Feedback.FeedbackError res = (Interop.Feedback.FeedbackError)Interop.Feedback.Stop();
}
/// <summary>
- /// Gets the count of theme can be used according to feedback type.
+ /// Gets the number of themes supported as described in the configuration.
/// </summary>
/// <remarks>
/// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported.
/// uint coundOfTheme = feedback.GetCountOfThemeInternal(FeedbackType.Sound);
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public uint GetCountOfThemeInternal(FeedbackType type)
{
}
/// <summary>
- /// Gets the id of theme selected.
+ /// Gets the current id of the theme selected from available themes described in the conf file.
/// </summary>
/// <remarks>
/// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported.
/// uint idOfTheme = feedback.GetThemeIdInternal(FeedbackType.Sound);
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public uint GetThemeIdInternal(FeedbackType type)
{
}
/// <summary>
- /// Sets the id of theme according to feedback type.
+ /// Sets the current id of the theme from available themes described in the conf file.
/// </summary>
/// <remarks>
/// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported.
/// feedback.SetThemeIdInternal(FeedbackType.Sound, idOfTheme);
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public void SetThemeIdInternal(FeedbackType type, uint idOfTheme)
{
}
/// <summary>
- /// Stops the current feedback playing by feedback type
+ /// Stops reactions of various types according to the feedback type.
/// </summary>
/// <remarks>
/// To stop vibration, the application should have http://tizen.org/privilege/haptic privilege.
/// feedback.StopTypeInternal(FeedbackType.Vibration);
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public void StopTypeInternal(FeedbackType type)
{
}
/// <summary>
- /// Gets the id array of theme supported.
+ /// Gets the array of theme ids supported described in the conf file.
/// </summary>
/// <remarks>
/// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported.
/// The theme id is positive value as defined in the conf file.
+ /// Gets all theme ids as defined in the conf file.
/// </remarks>
/// <since_tizen> 10 </since_tizen>
/// <param name="type">The feedback type.</param>
/// uint[] getThemeIds = feedback.GetThemeIdsInternal(FeedbackType.Sound);
/// </code>
/// </example>
+ /// <seealso cref="FeedbackType"/>
[EditorBrowsable(EditorBrowsableState.Never)]
public uint[] GetThemeIdsInternal(FeedbackType type)
{