CMNロゴ

ICmnPilot::cmnSetFolderDetailInt Method


フォルダプロパティ[詳細]のデータを設定します。(数値)

Syntax

void  cmnSetFolderDetailInt(
    LPCSTR lpszKey,
    UINT uiData
);

Parameters

lpszKey

[in] 項目キー
ICpx::cpxGetFolderDetailItem で指定した項目キーを設定します。

uiData

[in] 設定値

Return Value

戻り値はありません。

Remarks

文字列型のデータを設定するには ICmnPilot::cmnSetFolderDetailStr を使用してください。


Example

C++

         :
    m_pICmnPilot->cmnSetFolderDetailInt ("OPT_COLOR", 0x00ffffff);
         :

Delphi

         :
    m_pICmnPilot.cmnSetFolderDetailInt ('OPT_COLOR', $00ffffff);
         :



ICmnPilot