@@ -3484,6 +3484,54 @@ public static String GetTextDecoration(this ICssStyleDeclaration style) =>
3484
3484
public static void SetTextDecoration ( this ICssStyleDeclaration style , String value ) =>
3485
3485
style . SetProperty ( PropertyNames . TextDecoration , value ) ;
3486
3486
3487
+ /// <summary>
3488
+ /// Gets a value that indicates the style of the text decoration.
3489
+ /// </summary>
3490
+ [ DomName ( "textDecorationStyle" ) ]
3491
+ [ DomAccessor ( Accessors . Getter ) ]
3492
+ public static String GetTextDecorationStyle ( this ICssStyleDeclaration style ) =>
3493
+ style . GetPropertyValue ( PropertyNames . TextDecorationStyle ) ;
3494
+
3495
+ /// <summary>
3496
+ /// Sets a value that indicates the style of the text decoration.
3497
+ /// </summary>
3498
+ [ DomName ( "textDecorationStyle" ) ]
3499
+ [ DomAccessor ( Accessors . Setter ) ]
3500
+ public static void SetTextDecorationStyle ( this ICssStyleDeclaration style , String value ) =>
3501
+ style . SetProperty ( PropertyNames . TextDecorationStyle , value ) ;
3502
+
3503
+ /// <summary>
3504
+ /// Gets a value that indicates the line of the text decoration.
3505
+ /// </summary>
3506
+ [ DomName ( "textDecorationLine" ) ]
3507
+ [ DomAccessor ( Accessors . Getter ) ]
3508
+ public static String GetTextDecorationLine ( this ICssStyleDeclaration style ) =>
3509
+ style . GetPropertyValue ( PropertyNames . TextDecorationLine ) ;
3510
+
3511
+ /// <summary>
3512
+ /// Sets a value that indicates the line of the text decoration.
3513
+ /// </summary>
3514
+ [ DomName ( "textDecorationLine" ) ]
3515
+ [ DomAccessor ( Accessors . Setter ) ]
3516
+ public static void SetTextDecorationLine ( this ICssStyleDeclaration style , String value ) =>
3517
+ style . SetProperty ( PropertyNames . TextDecorationLine , value ) ;
3518
+
3519
+ /// <summary>
3520
+ /// Gets a value that indicates the color of the text decoration.
3521
+ /// </summary>
3522
+ [ DomName ( "textDecorationColor" ) ]
3523
+ [ DomAccessor ( Accessors . Getter ) ]
3524
+ public static String GetTextDecorationColor ( this ICssStyleDeclaration style ) =>
3525
+ style . GetPropertyValue ( PropertyNames . TextDecorationColor ) ;
3526
+
3527
+ /// <summary>
3528
+ /// Sets a value that indicates the color of the text decoration.
3529
+ /// </summary>
3530
+ [ DomName ( "textDecorationColor" ) ]
3531
+ [ DomAccessor ( Accessors . Setter ) ]
3532
+ public static void SetTextDecorationColor ( this ICssStyleDeclaration style , String value ) =>
3533
+ style . SetProperty ( PropertyNames . TextDecorationColor , value ) ;
3534
+
3487
3535
/// <summary>
3488
3536
/// Gets the indentation of the first line of text in the
3489
3537
/// object.
0 commit comments