FlexPivot for WinForms
KeepFileType 列挙体

C1.DataEngine アセンブリ > C1.DataEngine 名前空間 : KeepFileType 列挙体
Strategies determining what files are kept permanently after their creation and what are deleted when no longer needed. Used in the Workspace.KeepFiles property.
シンタックス
'宣言
 
Public Enum KeepFileType 
   Inherits System.Enum
public enum KeepFileType : System.Enum 
メンバ
メンバ解説
IndexAll indexes (table row ids sorted by one or more fields) created in calculations are kept for possible reuse in future calculations. Indexes (and joins, if joins are used) are the most costly data to recreate, so it is important to keep them for optimal performance.
IndexAndJoinDefault for server-side DataEngine. All indexes and joins created in calculations are kept for possible reuse in future calculations. They are the most costly data to recreate, so it is important to keep them for optimal performance.
NoneAll files created in calculations are deleted when no longer needed. If they are requested again, they are recreated. Use this strategy only for calculations peformed once or rarely repeated, or if saving disk space is more important than performance.
ResultsDefault for FlexPivot control. All files created in calculations are kept on disk, so they can be used in future calculations without recreating them. This strategy is appropriate for FlexPivot control, but usually not for server-side DataEngine serving multiple clients.
継承階層

System.Object
   System.ValueType
      System.Enum
         C1.DataEngine.KeepFileType

参照

C1.DataEngine 名前空間