SetVisible
Sets the visibility to the current presentation slide.
Syntax
expression.SetVisible(value);
expression
- A variable that represents a ApiSlide class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
value | Required | boolean | Slide visibility. |
Returns
boolean
Example
This example sets the visibility to the current presentation slide.
var oPresentation = Api.GetPresentation();
var oSlide = Api.CreateSlide();
oSlide.SetVisible(false);
oPresentation.AddSlide(oSlide);