Syntax
UINT cmnGetBBSDetailInt( int idxBBS, LPCSTR lpszKey, UINT uiDefault );
Parameters
- idxBBS
[in] 掲示板インデックス
- lpszKey
[in] 項目キー
ICpx::cpxGetBBSDetailItem で指定した項目キーを設定します。
- uiDefault
[in] 初期値
値が設定されていない場合の初期値を設定します
Return Value
Windows API の GetPrivateProfileInt の戻り値が戻ります。
Remarks
文字列型のデータを得るにはICmnPilot::cmnGetBBSDetailStrを使用してください。
Example
C++
: COLORREF color; color = m_pICmnPilot->cmnGetBBSDetailInt (idxBBS, "OPT_COLOR", 0x00ffffff); :Delphi
var color: COLORREF; : color := m_pICmnPilot.cmnGetBBSDetailInt (idxBBS, 'OPT_COLOR', $00ffffff); :