@@ -14,78 +14,79 @@ properties:
14
14
package : powerpoint!
15
15
fullName : bold
16
16
summary : >-
17
- Represents the bold status of font. Returns `null` if the `TextRange` includes both bold and non-bold text
17
+ Specifies the bold status of font. Returns `null` if the `TextRange` contains both bold and non-bold text
18
18
fragments.
19
19
remarks : ' \[ [API set: PowerPointApi 1.4](/javascript/api/requirement-sets/powerpoint/powerpoint-api-requirement-sets) \]'
20
20
isPreview : false
21
21
isDeprecated : false
22
22
syntax :
23
- content : ' bold?: boolean;'
23
+ content : ' bold?: boolean | null ;'
24
24
return :
25
- type : boolean
25
+ type : boolean | null
26
26
- name : color
27
27
uid : ' powerpoint!PowerPoint.Interfaces.ShapeFontUpdateData#color:member'
28
28
package : powerpoint!
29
29
fullName : color
30
30
summary : >-
31
- HTML color code representation of the text color (e.g., "\#FF0000" represents red). Returns `null` if the
32
- `TextRange` includes text fragments with different colors.
31
+ Specifies the HTML color code representation of the text color (e.g., "\#FF0000" represents red). Returns `null`
32
+ if the `TextRange` contains text fragments with different colors.
33
33
remarks : ' \[ [API set: PowerPointApi 1.4](/javascript/api/requirement-sets/powerpoint/powerpoint-api-requirement-sets) \]'
34
34
isPreview : false
35
35
isDeprecated : false
36
36
syntax :
37
- content : ' color?: string;'
37
+ content : ' color?: string | null ;'
38
38
return :
39
- type : string
39
+ type : string | null
40
40
- name : italic
41
41
uid : ' powerpoint!PowerPoint.Interfaces.ShapeFontUpdateData#italic:member'
42
42
package : powerpoint!
43
43
fullName : italic
44
44
summary : >-
45
- Represents the italic status of font. Returns 'null' if the 'TextRange' includes both italic and non-italic text
45
+ Specifies the italic status of font. Returns 'null' if the 'TextRange' contains both italic and non-italic text
46
46
fragments.
47
47
remarks : ' \[ [API set: PowerPointApi 1.4](/javascript/api/requirement-sets/powerpoint/powerpoint-api-requirement-sets) \]'
48
48
isPreview : false
49
49
isDeprecated : false
50
50
syntax :
51
- content : ' italic?: boolean;'
51
+ content : ' italic?: boolean | null ;'
52
52
return :
53
- type : boolean
53
+ type : boolean | null
54
54
- name : name
55
55
uid : ' powerpoint!PowerPoint.Interfaces.ShapeFontUpdateData#name:member'
56
56
package : powerpoint!
57
57
fullName : name
58
58
summary : >-
59
- Represents font name (e.g., "Calibri"). If the text is a Complex Script or East Asian language, this is the
60
- corresponding font name; otherwise it is the Latin font name.
59
+ Specifies the font name (e.g., "Calibri"). If the text is a Complex Script or East Asian language, this is the
60
+ corresponding font name; otherwise it is the Latin font name. Returns `null` if the `TextRange` contains text
61
+ fragments with different font names.
61
62
remarks : ' \[ [API set: PowerPointApi 1.4](/javascript/api/requirement-sets/powerpoint/powerpoint-api-requirement-sets) \]'
62
63
isPreview : false
63
64
isDeprecated : false
64
65
syntax :
65
- content : ' name?: string;'
66
+ content : ' name?: string | null ;'
66
67
return :
67
- type : string
68
+ type : string | null
68
69
- name : size
69
70
uid : ' powerpoint!PowerPoint.Interfaces.ShapeFontUpdateData#size:member'
70
71
package : powerpoint!
71
72
fullName : size
72
73
summary : >-
73
- Represents font size in points (e.g., 11). Returns null if the TextRange includes text fragments with different
74
- font sizes.
74
+ Specifies the font size in points (e.g., 11). Returns ` null` if the ` TextRange` contains text fragments with
75
+ different font sizes.
75
76
remarks : ' \[ [API set: PowerPointApi 1.4](/javascript/api/requirement-sets/powerpoint/powerpoint-api-requirement-sets) \]'
76
77
isPreview : false
77
78
isDeprecated : false
78
79
syntax :
79
- content : ' size?: number;'
80
+ content : ' size?: number | null ;'
80
81
return :
81
- type : number
82
+ type : number | null
82
83
- name : underline
83
84
uid : ' powerpoint!PowerPoint.Interfaces.ShapeFontUpdateData#underline:member'
84
85
package : powerpoint!
85
86
fullName : underline
86
87
summary : >-
87
- Type of underline applied to the font. Returns `null` if the `TextRange` includes text fragments with different
88
- underline styles. See
88
+ Specifies the type of underline applied to the font. Returns `null` if the `TextRange` contains text fragments
89
+ with different underline styles. See
89
90
[PowerPoint.ShapeFontUnderlineStyle](xref:powerpoint!PowerPoint.ShapeFontUnderlineStyle:enum) for details.
90
91
remarks : ' \[ [API set: PowerPointApi 1.4](/javascript/api/requirement-sets/powerpoint/powerpoint-api-requirement-sets) \]'
91
92
isPreview : false
@@ -94,9 +95,9 @@ properties:
94
95
content : >-
95
96
underline?: PowerPoint.ShapeFontUnderlineStyle | "None" | "Single" | "Double" | "Heavy" | "Dotted" |
96
97
"DottedHeavy" | "Dash" | "DashHeavy" | "DashLong" | "DashLongHeavy" | "DotDash" | "DotDashHeavy" | "DotDotDash"
97
- | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble";
98
+ | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble" | null ;
98
99
return :
99
100
type : >-
100
101
<xref uid="powerpoint!PowerPoint.ShapeFontUnderlineStyle:enum" /> | "None" | "Single" | "Double" | "Heavy" |
101
102
"Dotted" | "DottedHeavy" | "Dash" | "DashHeavy" | "DashLong" | "DashLongHeavy" | "DotDash" | "DotDashHeavy" |
102
- "DotDotDash" | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble"
103
+ "DotDotDash" | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble" | null
0 commit comments