MESCIUS SPREAD for ASP.NET 10.0J
Width プロパティ (FloatingObject)

オブジェクトの幅(ピクセル単位)を取得または設定します。
構文
'Declaration
 
Public Overrides Property Width As Unit
public override Unit Width {get; set;}
例外
例外説明
System.ArgumentExceptionWidthの単位がピクセルではありません。
System.ArgumentOutOfRangeExceptionWidthの値がゼロ以下です。
次のサンプルコードは、シートに画像を追加します。
FarPoint.Web.Spread.SpreadImage image = new FarPoint.Web.Spread.SpreadImage();
image.CanMove = true;
image.CanSelect = true;
image.ImageUrl = "fplogo.png";
image.Width = 200;
image.Height = 150;
image.Left = 50;
image.Top = 50;
FpSpread1.ActiveSheetView.Images.Add(image);
Dim Image As New FarPoint.Web.Spread.SpreadImage()
Image.CanMove = True
Image.CanSelect = True
Image.ImageUrl = "fplogo.png"
Image.Width = 200
Image.Height = 150
Image.Left = 50
Image.Top = 50
FpSpread1.ActiveSheetView.Images.Add(Image)
参照

FloatingObject クラス
FloatingObject メンバ

 

 


© MESCIUS inc. All rights reserved.