![]() | DIAdem 2012 Help |
![]() | DIAdem 2014 Help |
![]() | DIAdem 2015 Help |
![]() | DIAdem 2017 Help |
![]() | DIAdem 2018 Help |
![]() | DIAdem 2019 Help |
Specifies in DIAdem REPORT the width of an object as a percentage of the page area, in cm or in inches, if you use the coordinates of a corner, and the height and width to position the object. Because you can use either the Bottom, Height, Left, Right, Top, and Width for the ObjectPositionDefinedByBorders property, or the Height, Width, X1, X2, Y1, and Y2 for the ObjectPositionDefinedByCoordinates property to specify the position, these properties impact each other and the value of the property set first can be modified by another property.
Object.Width
Object | ObjectPositionDefinedByCoordinates Object with this property |
Object.Width | Double with read and write access |
The following example generates a formula graphic, specifies the coordinates of the corner points of the formula graphic and the edges of the worksheet, and generates a frame which the example positions using the coordinates of the bottom left corner and the height and width:
Dim oMyFormula, oMyPosFormula, oMyFrame, oMyPosFrame Call Report.NewLayout() Set oMyFormula = Report.ActiveSheet.Objects.Add(eReportObjectFormulaDisplay ,"MyFormular") Set oMyPosFormula = oMyFormula.Position.ByCoordinate oMyFormula.Text = "a^2+b^2=c^2" oMyPosFormula.X1 = 10 oMyPosFormula.X2 = 30 oMyPosFormula.Y1 = 10 oMyPosFormula.Y2 = 25 Set oMyFrame = Report.ActiveSheet.Objects.Add(eReportObjectFrame,"MyFrame") Set oMyPosFrame = oMyFrame.Position.ByCoordinate oMyPosFrame.X1 = 40 oMyPosFrame.Width = 20 oMyPosFrame.Y1 = 10 oMyPosFrame.Height = 15 Call Report.Refresh()
Helpful
Not Helpful