Previous Document Next Document

Object Model Reference : Classes : D : DimensionLinear : Properties : DimensionLinear.TextY


DimensionLinear.TextY

Property TextY As Double

Description

Member of DimensionLinear

The TextY property specifies the vertical position of a text label.

VBA example

The following VBA example creates a rectangle and a linear dimension that is linked to the rectangle’s snap points.

Sub Test()
Dim shp1 As Shape, shp2 As Shape
Set shp1 = ActiveLayer.CreateRectangle2(0, 0, 100, 50)
Set shp2 = ActiveLayer.CreateLinearDimension(cdrDimensionHorizontal, shp1.SnapPoints(1), shp1.SnapPoints(3))
MsgBox shp2.Dimension.Linear.TextX
MsgBox shp2.Dimension.Linear.TextY
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.