Quellcode durchsuchen

Patch provided by SebastianDotNet

Added numbers in UnderlineStyle to the original word automation model enum numbers(WdUnderline).
master
MadBoy_cp vor 10 Jahren
Ursprung
Commit
b5c6005cd6
1 geänderte Dateien mit 18 neuen und 18 gelöschten Zeilen
  1. 18
    18
      DocX/_Enumerations.cs

+ 18
- 18
DocX/_Enumerations.cs Datei anzeigen

@@ -188,24 +188,24 @@ namespace Novacode
public enum UnderlineStyle
{
none,
singleLine,
doubleLine,
thick,
dotted,
dottedHeavy,
dash,
dashedHeavy,
dashLong,
dashLongHeavy,
dotDash,
dashDotHeavy,
dotDotDash,
dashDotDotHeavy,
wave,
wavyHeavy,
wavyDouble,
words
none = 0,
singleLine = 1,
words = 2,
doubleLine = 3,
dotted = 4,
thick = 6,
dash = 7,
dotDash = 9,
dotDotDash = 10,
wave = 11,
dottedHeavy = 20,
dashedHeavy = 23,
dashDotHeavy = 25,
dashDotDotHeavy = 26,
dashLongHeavy = 27,
dashLong = 39,
wavyDouble = 43,
wavyHeavy = 55,
};
public enum StrikeThrough

Laden…
Abbrechen
Speichern