Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
72 lines (42 loc) · 2.25 KB

master-drawquarterarc-method-visio.md

File metadata and controls

72 lines (42 loc) · 2.25 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
Master.DrawQuarterArc Method (Visio)
vis_sdr.chm10751385
vis_sdr.chm10751385
visio
Visio.Master.DrawQuarterArc
6c728c0c-8317-6114-70e5-e5cb68a5729f
06/08/2017

Master.DrawQuarterArc Method (Visio)

Creates a shape whose path consists of an elliptical arc defined by the two points and the flag passed in as arguments.

Syntax

expression . DrawQuarterArc( xBegin , yBegin , xEnd , yEnd , SweepFlag )

expression A variable that represents a Master object.

Parameters

Name Required/Optional Data Type Description
xBegin Required Double The x-coordinate of the begin point of the arc.
yBegin Required Double The y-coordinate of the begin point of the arc.
xEnd Required Double The x-coordinate of the endpoint of the arc.
yEnd Required Double The y-coordinate of the endpoint of the arc.
SweepFlag Required VisArcSweepFlags The type of arc, concave or convex.

Return Value

Shape

Remarks

The begin and endpoints define the bounding rectangle of the arc, and the _SweepFlag_argument determines which of the two possible arcs within the bounding rectangle is drawn. The bounding rectangle is always aligned to the page coordinate system; that is, the x -axis of the ellipse is parallel to the x -axis of the page.

The following possible values for the SweepFlag argument are declared in VisArcSweepFlags in the Visio type library.

Constant Value Description
visArcSweepFlagConcave 0 Concave arc
visArcSweepFlagConvex 1 Convex arc
If SweepFlag is visArcSweepFlagConcave , the line joining the center of the ellipse to the arc sweeps through decreasing angles; if it is visArcSweepFlagConvex , it sweeps through increasing angles.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the DrawQuarterArc method to draw a concave arc on the drawing page.

Public Sub DrawQuarterArc_Example 
 
 Dim vsoShape As Visio.Shape 
 Set vsoShape = ActivePage.DrawQuarterArc(3, 3, 6, 8, visArcSweepFlagConcave) 
 
End Sub