Previous Document Next Document

Object Model Reference : Classes : R : Rectangle : Properties : Rectangle.RadiusLowerRight


Rectangle.RadiusLowerRight

Property RadiusLowerRight As Double

Description

Member of Rectangle

The RadiusLowerRight property returns or specifies the radius of a rectangle’s lower-right corner.

 
The radius is measured in document units and is not relative to the size of the rectangle.
VBA example

The following VBA example rounds the corners of the selected rectangle by specifying a different radius (0.1", 0.2", 0.3", and 0.4") for each corner.

Sub Test()
 If ActiveShape.Type <> cdrRectangleShape Then Exit Sub
 With ActiveShape.Rectangle
  .RadiusLowerLeft = 0.1
  .RadiusLowerRight = 0.2
  .RadiusUpperLeft = 0.3
  .RadiusUpperRight = 0.4
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.