You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
139258
139258
context: RequestContext;
139259
139259
/**
139260
-
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
139260
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
139261
139261
*
139262
139262
* @remarks
139263
139263
* [Api set: PowerPointApi 1.4]
139264
139264
*/
139265
-
visible: boolean;
139265
+
visible: boolean | null;
139266
139266
/**
139267
139267
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
/** An interface for updating data on the `BulletFormat` object, for use in `bulletFormat.set({ ... })`. */
141066
141066
interface BulletFormatUpdateData {
141067
141067
/**
141068
-
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
141068
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
141069
141069
*
141070
141070
* @remarks
141071
141071
* [Api set: PowerPointApi 1.4]
141072
141072
*/
141073
-
visible?: boolean;
141073
+
visible?: boolean | null;
141074
141074
}
141075
141075
/** An interface for updating data on the `ParagraphFormat` object, for use in `paragraphFormat.set({ ... })`. */
/** An interface describing the data returned by calling `bulletFormat.toJSON()`. */
141966
141966
interface BulletFormatData {
141967
141967
/**
141968
-
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
141968
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
141969
141969
*
141970
141970
* @remarks
141971
141971
* [Api set: PowerPointApi 1.4]
141972
141972
*/
141973
-
visible?: boolean;
141973
+
visible?: boolean | null;
141974
141974
}
141975
141975
/** An interface describing the data returned by calling `paragraphFormat.toJSON()`. */
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
143797
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
131357
131357
context: RequestContext;
131358
131358
/**
131359
-
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
131359
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
131360
131360
*
131361
131361
* @remarks
131362
131362
* [Api set: PowerPointApi 1.4]
131363
131363
*/
131364
-
visible: boolean;
131364
+
visible: boolean | null;
131365
131365
/**
131366
131366
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
/** An interface for updating data on the `BulletFormat` object, for use in `bulletFormat.set({ ... })`. */
132973
132973
interface BulletFormatUpdateData {
132974
132974
/**
132975
-
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
132975
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
132976
132976
*
132977
132977
* @remarks
132978
132978
* [Api set: PowerPointApi 1.4]
132979
132979
*/
132980
-
visible?: boolean;
132980
+
visible?: boolean | null;
132981
132981
}
132982
132982
/** An interface for updating data on the `ParagraphFormat` object, for use in `paragraphFormat.set({ ... })`. */
/** An interface describing the data returned by calling `bulletFormat.toJSON()`. */
133654
133654
interface BulletFormatData {
133655
133655
/**
133656
-
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
133656
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
133657
133657
*
133658
133658
* @remarks
133659
133659
* [Api set: PowerPointApi 1.4]
133660
133660
*/
133661
-
visible?: boolean;
133661
+
visible?: boolean | null;
133662
133662
}
133663
133663
/** An interface describing the data returned by calling `paragraphFormat.toJSON()`. */
* Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
134995
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
0 commit comments