MESCIUS SPREAD for Windows Forms 15.0J
TipAppearance コンストラクタ(Color,Color,Font)
使用例 

テキストヒントおよびセルのメモ(スクロールヒントは除く)の背景色
テキストヒント、スクロールヒント、およびセルのメモの前景(テキスト)色

テキストヒント、スクロールヒント、およびセルのメモのテキストのフォント

インタフェース内のさまざまなポップアップヒントの外観設定のセットを 指定された値を使用して作成します。
構文
'宣言
 
Public Function New( _
   ByVal backColor As Color, _
   ByVal foreColor As Color, _
   ByVal font As Font _
)
public TipAppearance( 
   Color backColor,
   Color foreColor,
   Font font
)

パラメータ

backColor
テキストヒントおよびセルのメモ(スクロールヒントは除く)の背景色
foreColor
テキストヒント、スクロールヒント、およびセルのメモの前景(テキスト)色
font

テキストヒント、スクロールヒント、およびセルのメモのテキストのフォント

解説
色とフォントを指定して、TipAppearanceクラスのインスタンスを初期化します。
使用例
private void fpSpread1_TextTipFetch(object sender, FarPoint.Win.Spread.TextTipFetchEventArgs e)
{
FarPoint.Win.Spread.TipAppearance ta = new FarPoint.Win.Spread.TipAppearance(Color.Yellow, Color.Red, new Font("Comic Sans
MS", 10));
FarPoint.Win.Spread.TipAppearance ta1 = new FarPoint.Win.Spread.TipAppearance();
ta1.CopyFrom(ta);
e.View.TextTipAppearance = ta1;
}
Private Sub fpSpread1_TextTipFetch(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.TextTipFetchEventArgs) Handles fpSpread1.TextTipFetch
Dim ta As New FarPoint.Win.Spread.TipAppearance(Color.Yellow, Color.Red, New Font("Comic Sans MS", 10))
Dim ta1 As New FarPoint.Win.Spread.TipAppearance
ta1.CopyFrom(ta)
e.View.TextTipAppearance = ta1
End Sub
参照

TipAppearance クラス
TipAppearance メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.