PowerTools SPREAD for Windows Forms 8.0J
TipWidth プロパティ


ポップアップヒントまたはセルのメモの幅を取得または設定します。
構文
'Declaration
 
Public Property TipWidth As Integer
'使用法
 
Dim instance As TextTipFetchEventArgs
Dim value As Integer
 
instance.TipWidth = value
 
value = instance.TipWidth
public int TipWidth {get; set;}

プロパティ値

ボックスの幅(ピクセル単位)を表す Integer
解説
ポップアップヒントボックスの幅(ピクセル単位)を指定します。
private void fpSpread1_TextTipFetch(object sender, FarPoint.Win.Spread.TextTipFetchEventArgs e) 
{ 
     e.ShowTip = true;
     e.TipWidth = 200; 
     e.TipText = "This call is used to generate documents in a Portable Document Format (PDF), and then store them to disk, send them via email, or attach them to a policy. This request also provides the option of combining all of the generated forms into one PDF or separating them into one file per form.";
     e.WrapText = true;
}
Private Sub FpSpread1_TextTipFetch(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.TextTipFetchEventArgs) Handles FpSpread1.TextTipFetch
e.ShowTip = True
e.TipWidth = 200;
e.TipText = "This call is used to generate documents in a Portable Document Format (PDF), and then store them to disk, send them via email, or attach them to a policy.  This request also provides the option of combining all of the generated forms into one PDF or separating them into one file per form."
     e.WrapText = True
End Sub
参照

TextTipFetchEventArgs クラス
TextTipFetchEventArgs メンバ

 

 


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