/// <summary>
 /// Reads the <see cref="SciterValue"/> as a Duration (<see cref="SciterColor"/>)
 /// </summary>
 /// <param name="sciterValue"></param>
 /// <param name="value">The output value</param>
 /// <returns></returns>
 public static bool TryAsDuration(this SciterValue sciterValue, out double value)
 {
     return(sciterValue.TryAsDurationInternal(out value));
 }