Added underline to the LBFontClass
Added logic to support using underbars to turn underlining on/off – only implemented in X/Y Plot RO’s for now
This commit is contained in:
@@ -583,6 +583,11 @@ namespace LBWordLibrary
|
||||
get { return (GetProperty("Name").ToString()); }
|
||||
set { SetProperty("Name", value); }
|
||||
}
|
||||
public LBWdUnderline Underline
|
||||
{
|
||||
get { return (LBWdUnderline)GetProperty("Underline"); }
|
||||
set { SetProperty("Underline", value); }
|
||||
}
|
||||
}
|
||||
public enum LBWdInformation
|
||||
{
|
||||
@@ -1251,4 +1256,25 @@ namespace LBWordLibrary
|
||||
wdRelativeVerticalPositionInnerMarginArea = 6,
|
||||
wdRelativeVerticalPositionOuterMarginArea = 7
|
||||
}
|
||||
public enum LBWdUnderline
|
||||
{
|
||||
wdUnderlineNone = 0,
|
||||
wdUnderlineSingle = 1,
|
||||
wdUnderlineWords = 2,
|
||||
wdUnderlineDouble = 3,
|
||||
wdUnderlineDotted = 4,
|
||||
wdUnderlineThick = 6,
|
||||
wdUnderlineDash = 7,
|
||||
wdUnderlineDotDash = 9,
|
||||
wdUnderlineDotDotDash = 10,
|
||||
wdUnderlineWavy = 11,
|
||||
wdUnderlineDottedHeavy = 20,
|
||||
wdUnderlineDashHeavy = 23,
|
||||
wdUnderlineDotDashHeavy = 25,
|
||||
wdUnderlineDotDotDashHeavy = 26,
|
||||
wdUnderlineWavyHeavy = 27,
|
||||
wdUnderlineDashLong = 39,
|
||||
wdUnderlineWavyDouble = 43,
|
||||
wdUnderlineDashLongHeavy = 55
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user