Win32 API 日本語リファレンス
ホームSystem.Mmc › _ExportListOptions

_ExportListOptions

列挙型
基底型i4

メンバー 4

名前10進16進説明
ExportListOptions_Default00x0既定のリストエクスポートオプションです。View.ExportList の呼び出しでこのフラグのみを指定した場合、リストビューの内容はカンマ区切りの ANSI テキストとしてエクスポートされます。
ExportListOptions_Unicode10x1リストは Unicode テキストとしてエクスポートされます。
ExportListOptions_TabDelimited20x2リストはタブ区切りのテキストとしてエクスポートされます。
ExportListOptions_SelectedItemsOnly40x4エクスポートされるリストには、現在選択されている項目のみが含まれます。

公式ドキュメント

ExportListOptions 列挙型は View.ExportList メソッドで使用され、リストビューの内容をファイルに書き込むときのオプションを指定します。これらの値はビット単位のOR演算で組み合わせることができます。この列挙型は MMC 2.0 Automation Object Model に適用されます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum _ExportListOptions : int {
    ExportListOptions_Default = 0,
    ExportListOptions_Unicode = 1,
    ExportListOptions_TabDelimited = 2,
    ExportListOptions_SelectedItemsOnly = 4
} _ExportListOptions;
public enum _ExportListOptions : int
{
    ExportListOptions_Default = 0,
    ExportListOptions_Unicode = 1,
    ExportListOptions_TabDelimited = 2,
    ExportListOptions_SelectedItemsOnly = 4,
}
Public Enum _ExportListOptions As Integer
    ExportListOptions_Default = 0
    ExportListOptions_Unicode = 1
    ExportListOptions_TabDelimited = 2
    ExportListOptions_SelectedItemsOnly = 4
End Enum
import enum

class _ExportListOptions(enum.IntEnum):
    ExportListOptions_Default = 0
    ExportListOptions_Unicode = 1
    ExportListOptions_TabDelimited = 2
    ExportListOptions_SelectedItemsOnly = 4
// _ExportListOptions
pub const ExportListOptions_Default: i32 = 0;
pub const ExportListOptions_Unicode: i32 = 1;
pub const ExportListOptions_TabDelimited: i32 = 2;
pub const ExportListOptions_SelectedItemsOnly: i32 = 4;
// _ExportListOptions
const (
	ExportListOptions_Default int32 = 0
	ExportListOptions_Unicode int32 = 1
	ExportListOptions_TabDelimited int32 = 2
	ExportListOptions_SelectedItemsOnly int32 = 4
)
const
  ExportListOptions_Default = 0;
  ExportListOptions_Unicode = 1;
  ExportListOptions_TabDelimited = 2;
  ExportListOptions_SelectedItemsOnly = 4;
// _ExportListOptions
pub const ExportListOptions_Default: i32 = 0;
pub const ExportListOptions_Unicode: i32 = 1;
pub const ExportListOptions_TabDelimited: i32 = 2;
pub const ExportListOptions_SelectedItemsOnly: i32 = 4;
const
  ExportListOptions_Default* = 0
  ExportListOptions_Unicode* = 1
  ExportListOptions_TabDelimited* = 2
  ExportListOptions_SelectedItemsOnly* = 4
enum _ExportListOptions : int {
    ExportListOptions_Default = 0,
    ExportListOptions_Unicode = 1,
    ExportListOptions_TabDelimited = 2,
    ExportListOptions_SelectedItemsOnly = 4,
}
#define global ExportListOptions_Default           0x0
#define global ExportListOptions_Unicode           0x1
#define global ExportListOptions_TabDelimited      0x2
#define global ExportListOptions_SelectedItemsOnly 0x4