Win32 API 日本語リファレンス
ホームStorage.FileServerResourceManager › FsrmReportLimit

FsrmReportLimit

列挙型
基底型i4

メンバー 12

名前10進16進説明
FsrmReportLimit_MaxFiles10x1レポートには最大で指定した数のファイルが一覧表示されます。すべてのレポートの種類に適用されます。
FsrmReportLimit_MaxFileGroups20x2FsrmReportType_FilesByType レポートには最大で指定した数のファイル グループが一覧表示されます。
FsrmReportLimit_MaxOwners30x3FsrmReportType_FilesByOwner レポートには最大で指定した数の 所有者が一覧表示されます。
FsrmReportLimit_MaxFilesPerFileGroup40x4FsrmReportType_FilesByProperty レポートにはファイル グループごとに最大で指定した数の ファイルが一覧表示されます。
FsrmReportLimit_MaxFilesPerOwner50x5FsrmReportType_FilesByOwner レポートは所有者ごとに最大で指定した数の ファイルに制限されます。
FsrmReportLimit_MaxFilesPerDuplGroup60x6FsrmReportType_DuplicateFiles レポートには重複ファイル グループごとに最大で指定した数の ファイルが一覧表示されます。
FsrmReportLimit_MaxDuplicateGroups70x7FsrmReportType_DuplicateFiles レポートには最大で指定した数の 重複ファイル グループが一覧表示されます。
FsrmReportLimit_MaxQuotas80x8FsrmReportType_QuotaUsage レポートには最大で指定した数の クォータが一覧表示されます。
FsrmReportLimit_MaxFileScreenEvents90x9FsrmReportType_FileScreenAudit レポートには最大で指定した数の ファイル スクリーン イベントが一覧表示されます。
FsrmReportLimit_MaxPropertyValues100xAFsrmReportType_FilesByProperty レポートには最大で指定した数の プロパティ値が一覧表示されます。
FsrmReportLimit_MaxFilesPerPropertyValue110xBFsrmReportType_FilesByProperty レポートにはプロパティ値ごとに最大で指定した数の ファイルが一覧表示されます。
FsrmReportLimit_MaxFolders120xC

FsrmReportType_FolderByProperty レポートには最大で指定した数の フォルダーが一覧表示されます。

Windows Server 2008 R2 および Windows Server 2008: このレポート制限は Windows Server 2012 より前ではサポートされません。

公式ドキュメント

レポートに含めるファイルを制限するために使用される制限値を定義します。

解説(Remarks)

制限の値は、 IFsrmReportManager::SetReportSizeLimit メソッドを呼び出すときに limitValue パラメーターで指定します。

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

各言語での定義

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

typedef enum FsrmReportLimit : int {
    FsrmReportLimit_MaxFiles = 1,
    FsrmReportLimit_MaxFileGroups = 2,
    FsrmReportLimit_MaxOwners = 3,
    FsrmReportLimit_MaxFilesPerFileGroup = 4,
    FsrmReportLimit_MaxFilesPerOwner = 5,
    FsrmReportLimit_MaxFilesPerDuplGroup = 6,
    FsrmReportLimit_MaxDuplicateGroups = 7,
    FsrmReportLimit_MaxQuotas = 8,
    FsrmReportLimit_MaxFileScreenEvents = 9,
    FsrmReportLimit_MaxPropertyValues = 10,
    FsrmReportLimit_MaxFilesPerPropertyValue = 11,
    FsrmReportLimit_MaxFolders = 12
} FsrmReportLimit;
public enum FsrmReportLimit : int
{
    FsrmReportLimit_MaxFiles = 1,
    FsrmReportLimit_MaxFileGroups = 2,
    FsrmReportLimit_MaxOwners = 3,
    FsrmReportLimit_MaxFilesPerFileGroup = 4,
    FsrmReportLimit_MaxFilesPerOwner = 5,
    FsrmReportLimit_MaxFilesPerDuplGroup = 6,
    FsrmReportLimit_MaxDuplicateGroups = 7,
    FsrmReportLimit_MaxQuotas = 8,
    FsrmReportLimit_MaxFileScreenEvents = 9,
    FsrmReportLimit_MaxPropertyValues = 10,
    FsrmReportLimit_MaxFilesPerPropertyValue = 11,
    FsrmReportLimit_MaxFolders = 12,
}
Public Enum FsrmReportLimit As Integer
    FsrmReportLimit_MaxFiles = 1
    FsrmReportLimit_MaxFileGroups = 2
    FsrmReportLimit_MaxOwners = 3
    FsrmReportLimit_MaxFilesPerFileGroup = 4
    FsrmReportLimit_MaxFilesPerOwner = 5
    FsrmReportLimit_MaxFilesPerDuplGroup = 6
    FsrmReportLimit_MaxDuplicateGroups = 7
    FsrmReportLimit_MaxQuotas = 8
    FsrmReportLimit_MaxFileScreenEvents = 9
    FsrmReportLimit_MaxPropertyValues = 10
    FsrmReportLimit_MaxFilesPerPropertyValue = 11
    FsrmReportLimit_MaxFolders = 12
End Enum
import enum

class FsrmReportLimit(enum.IntEnum):
    FsrmReportLimit_MaxFiles = 1
    FsrmReportLimit_MaxFileGroups = 2
    FsrmReportLimit_MaxOwners = 3
    FsrmReportLimit_MaxFilesPerFileGroup = 4
    FsrmReportLimit_MaxFilesPerOwner = 5
    FsrmReportLimit_MaxFilesPerDuplGroup = 6
    FsrmReportLimit_MaxDuplicateGroups = 7
    FsrmReportLimit_MaxQuotas = 8
    FsrmReportLimit_MaxFileScreenEvents = 9
    FsrmReportLimit_MaxPropertyValues = 10
    FsrmReportLimit_MaxFilesPerPropertyValue = 11
    FsrmReportLimit_MaxFolders = 12
// FsrmReportLimit
pub const FsrmReportLimit_MaxFiles: i32 = 1;
pub const FsrmReportLimit_MaxFileGroups: i32 = 2;
pub const FsrmReportLimit_MaxOwners: i32 = 3;
pub const FsrmReportLimit_MaxFilesPerFileGroup: i32 = 4;
pub const FsrmReportLimit_MaxFilesPerOwner: i32 = 5;
pub const FsrmReportLimit_MaxFilesPerDuplGroup: i32 = 6;
pub const FsrmReportLimit_MaxDuplicateGroups: i32 = 7;
pub const FsrmReportLimit_MaxQuotas: i32 = 8;
pub const FsrmReportLimit_MaxFileScreenEvents: i32 = 9;
pub const FsrmReportLimit_MaxPropertyValues: i32 = 10;
pub const FsrmReportLimit_MaxFilesPerPropertyValue: i32 = 11;
pub const FsrmReportLimit_MaxFolders: i32 = 12;
// FsrmReportLimit
const (
	FsrmReportLimit_MaxFiles int32 = 1
	FsrmReportLimit_MaxFileGroups int32 = 2
	FsrmReportLimit_MaxOwners int32 = 3
	FsrmReportLimit_MaxFilesPerFileGroup int32 = 4
	FsrmReportLimit_MaxFilesPerOwner int32 = 5
	FsrmReportLimit_MaxFilesPerDuplGroup int32 = 6
	FsrmReportLimit_MaxDuplicateGroups int32 = 7
	FsrmReportLimit_MaxQuotas int32 = 8
	FsrmReportLimit_MaxFileScreenEvents int32 = 9
	FsrmReportLimit_MaxPropertyValues int32 = 10
	FsrmReportLimit_MaxFilesPerPropertyValue int32 = 11
	FsrmReportLimit_MaxFolders int32 = 12
)
const
  FsrmReportLimit_MaxFiles = 1;
  FsrmReportLimit_MaxFileGroups = 2;
  FsrmReportLimit_MaxOwners = 3;
  FsrmReportLimit_MaxFilesPerFileGroup = 4;
  FsrmReportLimit_MaxFilesPerOwner = 5;
  FsrmReportLimit_MaxFilesPerDuplGroup = 6;
  FsrmReportLimit_MaxDuplicateGroups = 7;
  FsrmReportLimit_MaxQuotas = 8;
  FsrmReportLimit_MaxFileScreenEvents = 9;
  FsrmReportLimit_MaxPropertyValues = 10;
  FsrmReportLimit_MaxFilesPerPropertyValue = 11;
  FsrmReportLimit_MaxFolders = 12;
// FsrmReportLimit
pub const FsrmReportLimit_MaxFiles: i32 = 1;
pub const FsrmReportLimit_MaxFileGroups: i32 = 2;
pub const FsrmReportLimit_MaxOwners: i32 = 3;
pub const FsrmReportLimit_MaxFilesPerFileGroup: i32 = 4;
pub const FsrmReportLimit_MaxFilesPerOwner: i32 = 5;
pub const FsrmReportLimit_MaxFilesPerDuplGroup: i32 = 6;
pub const FsrmReportLimit_MaxDuplicateGroups: i32 = 7;
pub const FsrmReportLimit_MaxQuotas: i32 = 8;
pub const FsrmReportLimit_MaxFileScreenEvents: i32 = 9;
pub const FsrmReportLimit_MaxPropertyValues: i32 = 10;
pub const FsrmReportLimit_MaxFilesPerPropertyValue: i32 = 11;
pub const FsrmReportLimit_MaxFolders: i32 = 12;
const
  FsrmReportLimit_MaxFiles* = 1
  FsrmReportLimit_MaxFileGroups* = 2
  FsrmReportLimit_MaxOwners* = 3
  FsrmReportLimit_MaxFilesPerFileGroup* = 4
  FsrmReportLimit_MaxFilesPerOwner* = 5
  FsrmReportLimit_MaxFilesPerDuplGroup* = 6
  FsrmReportLimit_MaxDuplicateGroups* = 7
  FsrmReportLimit_MaxQuotas* = 8
  FsrmReportLimit_MaxFileScreenEvents* = 9
  FsrmReportLimit_MaxPropertyValues* = 10
  FsrmReportLimit_MaxFilesPerPropertyValue* = 11
  FsrmReportLimit_MaxFolders* = 12
enum FsrmReportLimit : int {
    FsrmReportLimit_MaxFiles = 1,
    FsrmReportLimit_MaxFileGroups = 2,
    FsrmReportLimit_MaxOwners = 3,
    FsrmReportLimit_MaxFilesPerFileGroup = 4,
    FsrmReportLimit_MaxFilesPerOwner = 5,
    FsrmReportLimit_MaxFilesPerDuplGroup = 6,
    FsrmReportLimit_MaxDuplicateGroups = 7,
    FsrmReportLimit_MaxQuotas = 8,
    FsrmReportLimit_MaxFileScreenEvents = 9,
    FsrmReportLimit_MaxPropertyValues = 10,
    FsrmReportLimit_MaxFilesPerPropertyValue = 11,
    FsrmReportLimit_MaxFolders = 12,
}
#define global FsrmReportLimit_MaxFiles                 0x1
#define global FsrmReportLimit_MaxFileGroups            0x2
#define global FsrmReportLimit_MaxOwners                0x3
#define global FsrmReportLimit_MaxFilesPerFileGroup     0x4
#define global FsrmReportLimit_MaxFilesPerOwner         0x5
#define global FsrmReportLimit_MaxFilesPerDuplGroup     0x6
#define global FsrmReportLimit_MaxDuplicateGroups       0x7
#define global FsrmReportLimit_MaxQuotas                0x8
#define global FsrmReportLimit_MaxFileScreenEvents      0x9
#define global FsrmReportLimit_MaxPropertyValues        0xA
#define global FsrmReportLimit_MaxFilesPerPropertyValue 0xB
#define global FsrmReportLimit_MaxFolders               0xC