Visio.PageView class
Represents the PageView class.
[ API set: 1.1 ]
- Extends
Properties
context | The request context associated with the object. This connects the add-in's process to the Office host application's process. |
zoom | Get and set Page's Zoom level. The value can be between 10 and 400 and denotes the percentage of zoom. [ API set: 1.1 ] |
Methods
center |
Pans the Visio drawing to place the specified shape in the center of the view. [ API set: 1.1 ] |
fit |
Fit Page to current window. [ API set: 1.1 ] |
get |
Returns the position object that specifies the position of the page in the view. [ API set: 1.1 ] |
get |
Represents the Selection in the page. [ API set: 1.1 ] |
is |
To check if the shape is in view of the page or not. [ API set: 1.1 ] |
load(options) | Queues up a command to load the specified properties of the object. You must call |
load(property |
Queues up a command to load the specified properties of the object. You must call |
load(property |
Queues up a command to load the specified properties of the object. You must call |
set(properties, options) | Sets multiple properties of an object at the same time. You can pass either a plain object with the appropriate properties, or another API object of the same type. |
set(properties) | Sets multiple properties on the object at the same time, based on an existing loaded object. |
set |
Set mock data |
set |
Sets the position of the page in the view. [ API set: 1.1 ] |
toJSON() | Overrides the JavaScript |
Property Details
context
The request context associated with the object. This connects the add-in's process to the Office host application's process.
context: RequestContext;
Property Value
zoom
Get and set Page's Zoom level. The value can be between 10 and 400 and denotes the percentage of zoom.
[ API set: 1.1 ]
zoom: number;
Property Value
number
Examples
Visio.run(session, function (ctx) {
const activePage = ctx.document.getActivePage();
activePage.view.zoom = 300;
return ctx.sync();
}).catch(function(error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
Method Details
centerViewportOnShape(ShapeId)
Pans the Visio drawing to place the specified shape in the center of the view.
[ API set: 1.1 ]
centerViewportOnShape(ShapeId: number): void;
Parameters
- ShapeId
-
number
ShapeId to be seen in the center.
Returns
void
Examples
Visio.run(session, function (ctx) {
const activePage = ctx.document.getActivePage();
const shape = activePage.shapes.getItem(0);
activePage.view.centerViewportOnShape(shape.Id);
return ctx.sync();
}).catch(function(error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
fitToWindow()
getPosition()
Returns the position object that specifies the position of the page in the view.
[ API set: 1.1 ]
getPosition(): OfficeExtension.ClientResult<Visio.Position>;
Returns
getSelection()
isShapeInViewport(Shape)
To check if the shape is in view of the page or not.
[ API set: 1.1 ]
isShapeInViewport(Shape: Visio.Shape): OfficeExtension.ClientResult<boolean>;
Parameters
- Shape
- Visio.Shape
Shape to be checked.
Returns
OfficeExtension.ClientResult<boolean>
load(options)
Queues up a command to load the specified properties of the object. You must call context.sync()
before reading the properties.
load(options?: Visio.Interfaces.PageViewLoadOptions): Visio.PageView;
Parameters
Provides options for which properties of the object to load.
Returns
load(propertyNames)
Queues up a command to load the specified properties of the object. You must call context.sync()
before reading the properties.
load(propertyNames?: string | string[]): Visio.PageView;
Parameters
- propertyNames
-
string | string[]
A comma-delimited string or an array of strings that specify the properties to load.
Returns
load(propertyNamesAndPaths)
Queues up a command to load the specified properties of the object. You must call context.sync()
before reading the properties.
load(propertyNamesAndPaths?: {
select?: string;
expand?: string;
}): Visio.PageView;
Parameters
- propertyNamesAndPaths
-
{ select?: string; expand?: string; }
propertyNamesAndPaths.select
is a comma-delimited string that specifies the properties to load, and propertyNamesAndPaths.expand
is a comma-delimited string that specifies the navigation properties to load.
Returns
set(properties, options)
Sets multiple properties of an object at the same time. You can pass either a plain object with the appropriate properties, or another API object of the same type.
set(properties: Interfaces.PageViewUpdateData, options?: OfficeExtension.UpdateOptions): void;
Parameters
- properties
- Visio.Interfaces.PageViewUpdateData
A JavaScript object with properties that are structured isomorphically to the properties of the object on which the method is called.
- options
- OfficeExtension.UpdateOptions
Provides an option to suppress errors if the properties object tries to set any read-only properties.
Returns
void
Remarks
This method has the following additional signature:
set(properties: Visio.PageView): void
set(properties)
Sets multiple properties on the object at the same time, based on an existing loaded object.
set(properties: Visio.PageView): void;
Parameters
- properties
- Visio.PageView
Returns
void
setMockData(data)
Set mock data
setMockData(data: Visio.Interfaces.PageViewData): void;
Parameters
Returns
void
setPosition(Position)
Sets the position of the page in the view.
[ API set: 1.1 ]
setPosition(Position: Visio.Position): void;
Parameters
- Position
- Visio.Position
Position object that specifies the new position of the page in the view.
Returns
void
toJSON()
Overrides the JavaScript toJSON()
method in order to provide more useful output when an API object is passed to JSON.stringify()
. (JSON.stringify
, in turn, calls the toJSON
method of the object that is passed to it.) Whereas the original Visio.PageView object is an API object, the toJSON
method returns a plain JavaScript object (typed as Visio.Interfaces.PageViewData
) that contains shallow copies of any loaded child properties from the original object.
toJSON(): Visio.Interfaces.PageViewData;
Returns
Feedback
Submit and view feedback for