PowerTools SPREAD for Windows Forms 8.0J
zoomedRectangle フィールド


ズームされた矩形を指定します。
構文
'Declaration
 
Protected zoomedRectangle As RectangleF
'使用法
 
Dim instance As PSObject
Dim value As RectangleF
 
value = instance.zoomedRectangle
 
instance.zoomedRectangle = value
protected RectangleF zoomedRectangle
次のサンプルコードは、ZoomedRectangle プロパティを使用します。
FarPoint.Win.Spread.DrawingSpace.PSShape psShape = new FarPoint.Win.Spread.DrawingSpace.RectangleShape();
var expected = new System.Drawing.RectangleF(0, 0, 75, 75);
//Get the value of the ZoomedRectangle property.
var actual = psShape.ZoomedRectangle;
listBox1.Items.Add(actual.ToString());
Dim expected As Object
Dim psShape As New FarPoint.Win.Spread.DrawingSpace.RectangleShape()
expected = New System.Drawing.RectangleF(0, 0, 75, 75)
'Get the value of the ZoomedRectangle property.
ListBox1.Items.Add(psShape.ZoomedRectangle.ToString())
参照

PSObject クラス
PSObject メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.