[{"data":1,"prerenderedAt":963},["ShallowReactive",2],{"content-query-feyoHV8WNq":3,"navigation":615},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"body":11,"_type":608,"_id":609,"_source":610,"_file":611,"_stem":612,"_extension":613,"sitemap":614},"/document/cell/custom-data-formatter","cell",false,"","カスタムデータフォーマッター","カスタムセルデータフォーマッターを使用してセルデータを書式設定することができます。セルデータフォーマッターは以下のインターフェースで定義されています。","2015-06-30",{"type":12,"children":13,"toc":605},"root",[14,21,161,167,180,495,500,539,544,590,599],{"type":15,"tag":16,"props":17,"children":18},"element","p",{},[19],{"type":20,"value":9},"text",{"type":15,"tag":22,"props":23,"children":27},"pre",{"className":24,"code":25,"language":26,"meta":7,"style":7},"language-cs shiki shiki-themes github-light github-dark github-light","public interface IDataFormatter\n{\n  // Return a formatted string for the specified cell\n  string FormatCell(ReoGridCell cell);\n\n  // Determines whether to check all unformatted cells\n  bool PerformTestFormat(); // Usually needs to return true\n}\n","cs",[28],{"type":15,"tag":29,"props":30,"children":31},"code",{"__ignoreMap":7},[32,55,65,75,109,119,128,152],{"type":15,"tag":33,"props":34,"children":37},"span",{"class":35,"line":36},"line",1,[38,44,49],{"type":15,"tag":33,"props":39,"children":41},{"style":40},"--shiki-light:#D73A49;--shiki-dark:#F97583;--shiki-default:#D73A49",[42],{"type":20,"value":43},"public",{"type":15,"tag":33,"props":45,"children":46},{"style":40},[47],{"type":20,"value":48}," interface",{"type":15,"tag":33,"props":50,"children":52},{"style":51},"--shiki-light:#6F42C1;--shiki-dark:#B392F0;--shiki-default:#6F42C1",[53],{"type":20,"value":54}," IDataFormatter\n",{"type":15,"tag":33,"props":56,"children":58},{"class":35,"line":57},2,[59],{"type":15,"tag":33,"props":60,"children":62},{"style":61},"--shiki-light:#24292E;--shiki-dark:#E1E4E8;--shiki-default:#24292E",[63],{"type":20,"value":64},"{\n",{"type":15,"tag":33,"props":66,"children":68},{"class":35,"line":67},3,[69],{"type":15,"tag":33,"props":70,"children":72},{"style":71},"--shiki-light:#6A737D;--shiki-dark:#6A737D;--shiki-default:#6A737D",[73],{"type":20,"value":74},"  // Return a formatted string for the specified cell\n",{"type":15,"tag":33,"props":76,"children":78},{"class":35,"line":77},4,[79,84,89,94,99,104],{"type":15,"tag":33,"props":80,"children":81},{"style":40},[82],{"type":20,"value":83},"  string",{"type":15,"tag":33,"props":85,"children":86},{"style":51},[87],{"type":20,"value":88}," FormatCell",{"type":15,"tag":33,"props":90,"children":91},{"style":61},[92],{"type":20,"value":93},"(",{"type":15,"tag":33,"props":95,"children":96},{"style":51},[97],{"type":20,"value":98},"ReoGridCell",{"type":15,"tag":33,"props":100,"children":101},{"style":51},[102],{"type":20,"value":103}," cell",{"type":15,"tag":33,"props":105,"children":106},{"style":61},[107],{"type":20,"value":108},");\n",{"type":15,"tag":33,"props":110,"children":112},{"class":35,"line":111},5,[113],{"type":15,"tag":33,"props":114,"children":116},{"emptyLinePlaceholder":115},true,[117],{"type":20,"value":118},"\n",{"type":15,"tag":33,"props":120,"children":122},{"class":35,"line":121},6,[123],{"type":15,"tag":33,"props":124,"children":125},{"style":71},[126],{"type":20,"value":127},"  // Determines whether to check all unformatted cells\n",{"type":15,"tag":33,"props":129,"children":131},{"class":35,"line":130},7,[132,137,142,147],{"type":15,"tag":33,"props":133,"children":134},{"style":40},[135],{"type":20,"value":136},"  bool",{"type":15,"tag":33,"props":138,"children":139},{"style":51},[140],{"type":20,"value":141}," PerformTestFormat",{"type":15,"tag":33,"props":143,"children":144},{"style":61},[145],{"type":20,"value":146},"(); ",{"type":15,"tag":33,"props":148,"children":149},{"style":71},[150],{"type":20,"value":151},"// Usually needs to return true\n",{"type":15,"tag":33,"props":153,"children":155},{"class":35,"line":154},8,[156],{"type":15,"tag":33,"props":157,"children":158},{"style":61},[159],{"type":20,"value":160},"}\n",{"type":15,"tag":162,"props":163,"children":165},"h2",{"id":164},"カスタムセルデータフォーマッターの作成",[166],{"type":20,"value":164},{"type":15,"tag":16,"props":168,"children":169},{},[170,172,178],{"type":20,"value":171},"セルデータフォーマッターを作成するには、",{"type":15,"tag":29,"props":173,"children":175},{"className":174},[],[176],{"type":20,"value":177},"IDataFormatter",{"type":20,"value":179}," インターフェースを実装するクラスを作成します。",{"type":15,"tag":22,"props":181,"children":183},{"className":24,"code":182,"language":26,"meta":7,"style":7},"class MyDataFormatter : IDataFormatter\n{\n  public string FormatCell(ReoGridCell cell)\n  {\n   double val = cell.GetData\u003Cdouble>();\n   return val \u003C 0 ? string.Format(\"[{0}]\", (-val).ToString(\"###,###,##0.00\")) : val.ToString(\"###,###,###.00\");\n  }\n\n  public bool PerformTestFormat()\n  {\n    return true;\n  }\n}\n",[184],{"type":15,"tag":29,"props":185,"children":186},{"__ignoreMap":7},[187,210,217,251,259,302,415,423,430,452,460,479,487],{"type":15,"tag":33,"props":188,"children":189},{"class":35,"line":36},[190,195,200,205],{"type":15,"tag":33,"props":191,"children":192},{"style":40},[193],{"type":20,"value":194},"class",{"type":15,"tag":33,"props":196,"children":197},{"style":51},[198],{"type":20,"value":199}," MyDataFormatter",{"type":15,"tag":33,"props":201,"children":202},{"style":61},[203],{"type":20,"value":204}," : ",{"type":15,"tag":33,"props":206,"children":207},{"style":51},[208],{"type":20,"value":209},"IDataFormatter\n",{"type":15,"tag":33,"props":211,"children":212},{"class":35,"line":57},[213],{"type":15,"tag":33,"props":214,"children":215},{"style":61},[216],{"type":20,"value":64},{"type":15,"tag":33,"props":218,"children":219},{"class":35,"line":67},[220,225,230,234,238,242,246],{"type":15,"tag":33,"props":221,"children":222},{"style":40},[223],{"type":20,"value":224},"  public",{"type":15,"tag":33,"props":226,"children":227},{"style":40},[228],{"type":20,"value":229}," string",{"type":15,"tag":33,"props":231,"children":232},{"style":51},[233],{"type":20,"value":88},{"type":15,"tag":33,"props":235,"children":236},{"style":61},[237],{"type":20,"value":93},{"type":15,"tag":33,"props":239,"children":240},{"style":51},[241],{"type":20,"value":98},{"type":15,"tag":33,"props":243,"children":244},{"style":51},[245],{"type":20,"value":103},{"type":15,"tag":33,"props":247,"children":248},{"style":61},[249],{"type":20,"value":250},")\n",{"type":15,"tag":33,"props":252,"children":253},{"class":35,"line":77},[254],{"type":15,"tag":33,"props":255,"children":256},{"style":61},[257],{"type":20,"value":258},"  {\n",{"type":15,"tag":33,"props":260,"children":261},{"class":35,"line":111},[262,267,272,277,282,287,292,297],{"type":15,"tag":33,"props":263,"children":264},{"style":40},[265],{"type":20,"value":266},"   double",{"type":15,"tag":33,"props":268,"children":269},{"style":51},[270],{"type":20,"value":271}," val",{"type":15,"tag":33,"props":273,"children":274},{"style":40},[275],{"type":20,"value":276}," =",{"type":15,"tag":33,"props":278,"children":279},{"style":61},[280],{"type":20,"value":281}," cell.",{"type":15,"tag":33,"props":283,"children":284},{"style":51},[285],{"type":20,"value":286},"GetData",{"type":15,"tag":33,"props":288,"children":289},{"style":61},[290],{"type":20,"value":291},"\u003C",{"type":15,"tag":33,"props":293,"children":294},{"style":40},[295],{"type":20,"value":296},"double",{"type":15,"tag":33,"props":298,"children":299},{"style":61},[300],{"type":20,"value":301},">();\n",{"type":15,"tag":33,"props":303,"children":304},{"class":35,"line":121},[305,310,315,319,325,330,334,339,344,348,354,359,364,369,374,378,383,388,393,398,402,406,411],{"type":15,"tag":33,"props":306,"children":307},{"style":40},[308],{"type":20,"value":309},"   return",{"type":15,"tag":33,"props":311,"children":312},{"style":61},[313],{"type":20,"value":314}," val ",{"type":15,"tag":33,"props":316,"children":317},{"style":40},[318],{"type":20,"value":291},{"type":15,"tag":33,"props":320,"children":322},{"style":321},"--shiki-light:#005CC5;--shiki-dark:#79B8FF;--shiki-default:#005CC5",[323],{"type":20,"value":324}," 0",{"type":15,"tag":33,"props":326,"children":327},{"style":40},[328],{"type":20,"value":329}," ?",{"type":15,"tag":33,"props":331,"children":332},{"style":40},[333],{"type":20,"value":229},{"type":15,"tag":33,"props":335,"children":336},{"style":61},[337],{"type":20,"value":338},".",{"type":15,"tag":33,"props":340,"children":341},{"style":51},[342],{"type":20,"value":343},"Format",{"type":15,"tag":33,"props":345,"children":346},{"style":61},[347],{"type":20,"value":93},{"type":15,"tag":33,"props":349,"children":351},{"style":350},"--shiki-light:#032F62;--shiki-dark:#9ECBFF;--shiki-default:#032F62",[352],{"type":20,"value":353},"\"[{0}]\"",{"type":15,"tag":33,"props":355,"children":356},{"style":61},[357],{"type":20,"value":358},", (",{"type":15,"tag":33,"props":360,"children":361},{"style":40},[362],{"type":20,"value":363},"-",{"type":15,"tag":33,"props":365,"children":366},{"style":61},[367],{"type":20,"value":368},"val).",{"type":15,"tag":33,"props":370,"children":371},{"style":51},[372],{"type":20,"value":373},"ToString",{"type":15,"tag":33,"props":375,"children":376},{"style":61},[377],{"type":20,"value":93},{"type":15,"tag":33,"props":379,"children":380},{"style":350},[381],{"type":20,"value":382},"\"###,###,##0.00\"",{"type":15,"tag":33,"props":384,"children":385},{"style":61},[386],{"type":20,"value":387},")) ",{"type":15,"tag":33,"props":389,"children":390},{"style":40},[391],{"type":20,"value":392},":",{"type":15,"tag":33,"props":394,"children":395},{"style":61},[396],{"type":20,"value":397}," val.",{"type":15,"tag":33,"props":399,"children":400},{"style":51},[401],{"type":20,"value":373},{"type":15,"tag":33,"props":403,"children":404},{"style":61},[405],{"type":20,"value":93},{"type":15,"tag":33,"props":407,"children":408},{"style":350},[409],{"type":20,"value":410},"\"###,###,###.00\"",{"type":15,"tag":33,"props":412,"children":413},{"style":61},[414],{"type":20,"value":108},{"type":15,"tag":33,"props":416,"children":417},{"class":35,"line":130},[418],{"type":15,"tag":33,"props":419,"children":420},{"style":61},[421],{"type":20,"value":422},"  }\n",{"type":15,"tag":33,"props":424,"children":425},{"class":35,"line":154},[426],{"type":15,"tag":33,"props":427,"children":428},{"emptyLinePlaceholder":115},[429],{"type":20,"value":118},{"type":15,"tag":33,"props":431,"children":433},{"class":35,"line":432},9,[434,438,443,447],{"type":15,"tag":33,"props":435,"children":436},{"style":40},[437],{"type":20,"value":224},{"type":15,"tag":33,"props":439,"children":440},{"style":40},[441],{"type":20,"value":442}," bool",{"type":15,"tag":33,"props":444,"children":445},{"style":51},[446],{"type":20,"value":141},{"type":15,"tag":33,"props":448,"children":449},{"style":61},[450],{"type":20,"value":451},"()\n",{"type":15,"tag":33,"props":453,"children":455},{"class":35,"line":454},10,[456],{"type":15,"tag":33,"props":457,"children":458},{"style":61},[459],{"type":20,"value":258},{"type":15,"tag":33,"props":461,"children":463},{"class":35,"line":462},11,[464,469,474],{"type":15,"tag":33,"props":465,"children":466},{"style":40},[467],{"type":20,"value":468},"    return",{"type":15,"tag":33,"props":470,"children":471},{"style":321},[472],{"type":20,"value":473}," true",{"type":15,"tag":33,"props":475,"children":476},{"style":61},[477],{"type":20,"value":478},";\n",{"type":15,"tag":33,"props":480,"children":482},{"class":35,"line":481},12,[483],{"type":15,"tag":33,"props":484,"children":485},{"style":61},[486],{"type":20,"value":422},{"type":15,"tag":33,"props":488,"children":490},{"class":35,"line":489},13,[491],{"type":15,"tag":33,"props":492,"children":493},{"style":61},[494],{"type":20,"value":160},{"type":15,"tag":16,"props":496,"children":497},{},[498],{"type":20,"value":499},"このフォーマッタークラスを適用するには:",{"type":15,"tag":22,"props":501,"children":503},{"className":24,"code":502,"language":26,"meta":7,"style":7},"DataFormatterManager.Instance.DataFormatters.Add(CellDataFormatFlag.Custom, new MyDataFormatter());\n",[504],{"type":15,"tag":29,"props":505,"children":506},{"__ignoreMap":7},[507],{"type":15,"tag":33,"props":508,"children":509},{"class":35,"line":36},[510,515,520,525,530,534],{"type":15,"tag":33,"props":511,"children":512},{"style":61},[513],{"type":20,"value":514},"DataFormatterManager.Instance.DataFormatters.",{"type":15,"tag":33,"props":516,"children":517},{"style":51},[518],{"type":20,"value":519},"Add",{"type":15,"tag":33,"props":521,"children":522},{"style":61},[523],{"type":20,"value":524},"(CellDataFormatFlag.Custom, ",{"type":15,"tag":33,"props":526,"children":527},{"style":40},[528],{"type":20,"value":529},"new",{"type":15,"tag":33,"props":531,"children":532},{"style":51},[533],{"type":20,"value":199},{"type":15,"tag":33,"props":535,"children":536},{"style":61},[537],{"type":20,"value":538},"());\n",{"type":15,"tag":16,"props":540,"children":541},{},[542],{"type":20,"value":543},"このフォーマッターを使用するには:",{"type":15,"tag":22,"props":545,"children":547},{"className":24,"code":546,"language":26,"meta":7,"style":7},"cell.DataFormat = CellDataFormatFlag.Custom;\ncell.Data = 12345.6789;\n",[548],{"type":15,"tag":29,"props":549,"children":550},{"__ignoreMap":7},[551,569],{"type":15,"tag":33,"props":552,"children":553},{"class":35,"line":36},[554,559,564],{"type":15,"tag":33,"props":555,"children":556},{"style":61},[557],{"type":20,"value":558},"cell.DataFormat ",{"type":15,"tag":33,"props":560,"children":561},{"style":40},[562],{"type":20,"value":563},"=",{"type":15,"tag":33,"props":565,"children":566},{"style":61},[567],{"type":20,"value":568}," CellDataFormatFlag.Custom;\n",{"type":15,"tag":33,"props":570,"children":571},{"class":35,"line":57},[572,577,581,586],{"type":15,"tag":33,"props":573,"children":574},{"style":61},[575],{"type":20,"value":576},"cell.Data ",{"type":15,"tag":33,"props":578,"children":579},{"style":40},[580],{"type":20,"value":563},{"type":15,"tag":33,"props":582,"children":583},{"style":321},[584],{"type":20,"value":585}," 12345.6789",{"type":15,"tag":33,"props":587,"children":588},{"style":61},[589],{"type":20,"value":478},{"type":15,"tag":16,"props":591,"children":592},{},[593],{"type":15,"tag":594,"props":595,"children":598},"img",{"alt":596,"src":597},"247","/document/images/247.png",[],{"type":15,"tag":600,"props":601,"children":602},"style",{},[603],{"type":20,"value":604},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":7,"searchDepth":57,"depth":57,"links":606},[607],{"id":164,"depth":57,"text":164},"markdown","content:document:6.cell:6.custom-data-formatter.md","content","document/6.cell/6.custom-data-formatter.md","document/6.cell/6.custom-data-formatter","md",{"loc":4},[616,939,942,945,948,951,954,957,960],{"title":617,"_path":618,"children":619},"Document","/document",[620,631,636,668,685,714,744,764,778,801,812,828,851,862,882,902,931],{"title":621,"_path":622,"children":623},"はじめに","/document/getting-started",[624,625,628],{"title":621,"_path":622},{"title":626,"_path":627},"インストール","/document/getting-started/installation",{"title":629,"_path":630},"V3 から V4 への移行ガイド","/document/getting-started/migrate-from-v3",{"title":632,"_path":633,"children":634},"ワークブック","/document/workbook",[635],{"title":632,"_path":633},{"title":637,"_path":638,"children":639},"ワークシート","/document/worksheet",[640,641,644,647,650,653,656,659,662,665],{"title":637,"_path":638},{"title":642,"_path":643},"行、列、ヘッダー","/document/worksheet/row-and-column",{"title":645,"_path":646},"範囲","/document/worksheet/range",{"title":648,"_path":649},"名前付き範囲","/document/worksheet/named-range",{"title":651,"_path":652},"セルの結合と解除","/document/worksheet/merge-and-unmerge",{"title":654,"_path":655},"パーシャルグリッド","/document/worksheet/partial-grid",{"title":657,"_path":658},"複数行ヘッダー","/document/worksheet/multiple-row-header",{"title":660,"_path":661},"ウィンドウ枠の固定","/document/worksheet/freeze",{"title":663,"_path":664},"ズーム","/document/worksheet/zoom",{"title":666,"_path":667},"設定とオプション","/document/worksheet/settings",{"title":669,"_path":670,"children":671},"選択とナビゲーション","/document/selection",[672,673,676,679,682],{"title":669,"_path":670},{"title":674,"_path":675},"フォーカスと選択","/document/selection/selection",{"title":677,"_path":678},"範囲の選択","/document/selection/pick-range",{"title":680,"_path":681},"クリップボード","/document/selection/clipboard",{"title":683,"_path":684},"テキスト検索","/document/selection/text-search",{"title":686,"_path":687,"children":688},"データ管理","/document/data",[689,690,693,696,699,702,705,708,711],{"title":686,"_path":687},{"title":691,"_path":692},"データソース","/document/data/datasource",{"title":694,"_path":695},"データフィルタリング","/document/data/data-filtering",{"title":697,"_path":698},"組み込みオートフィルター","/document/data/builtin-autofilter",{"title":700,"_path":701},"条件付きフィルター","/document/data/conditional-filter",{"title":703,"_path":704},"条件付きスタイル","/document/data/conditional-styles",{"title":706,"_path":707},"グループとアウトライン","/document/data/group-and-outline",{"title":709,"_path":710},"データバリデーション","/document/data/data-validation",{"title":712,"_path":713},"保護とロック","/document/data/protection",{"title":715,"_path":716,"children":717},"セル","/document/cell",[718,719,722,725,728,731,732,735,738,741],{"title":715,"_path":716},{"title":720,"_path":721},"セルの編集","/document/cell/cell-edit",{"title":723,"_path":724},"スタイル","/document/cell/style",{"title":726,"_path":727},"罫線","/document/cell/border",{"title":729,"_path":730},"データ書式","/document/cell/data-format",{"title":8,"_path":4},{"title":733,"_path":734},"データ連続入力","/document/cell/auto-fill",{"title":736,"_path":737},"リッチフォーマットテキスト","/document/cell/rich-format-text",{"title":739,"_path":740},"セルテキストの回転","/document/cell/rotate-cell-text",{"title":742,"_path":743},"セルの反復処理","/document/cell/iterate-cells",{"title":745,"_path":746,"children":747},"セルタイプ","/document/cell-types",[748,749,752,755,758,761],{"title":745,"_path":746},{"title":750,"_path":751},"組み込みセルタイプ","/document/cell-types/built-in-cell-types",{"title":753,"_path":754},"カスタムセル","/document/cell-types/custom-cell",{"title":756,"_path":757},"ドロップダウンリストセル","/document/cell-types/dropdown-list-cell",{"title":759,"_path":760},"コンボリストセル","/document/cell-types/combo-list-cell",{"title":762,"_path":763},"列全体のセルタイプ","/document/cell-types/cells-type-for-entire-column",{"title":765,"_path":766,"children":767},"数式","/document/formula",[768,769,772,775],{"title":765,"_path":766},{"title":770,"_path":771},"カスタム関数","/document/formula/custom-function",{"title":773,"_path":774},"数式関数","/document/formula/formula-functions",{"title":776,"_path":777},"VLOOKUP","/document/formula/vlookup",{"title":779,"_path":780,"children":781},"チャート","/document/chart",[782,783,786,789,792,795,798],{"title":779,"_path":780},{"title":784,"_path":785},"縦棒グラフ","/document/chart/column-chart",{"title":787,"_path":788},"横棒グラフ","/document/chart/bar-chart",{"title":790,"_path":791},"折れ線グラフ","/document/chart/line-chart",{"title":793,"_path":794},"面グラフ","/document/chart/area-chart",{"title":796,"_path":797},"2D円グラフ","/document/chart/pie-2d-chart",{"title":799,"_path":800},"ドーナツグラフ","/document/chart/doughnut-chart",{"title":802,"_path":803,"children":804},"フローティングオブジェクト","/document/floating",[805,806,809],{"title":802,"_path":803},{"title":807,"_path":808},"描画シェイプ","/document/floating/drawing-shapes",{"title":810,"_path":811},"フローティング画像","/document/floating/floating-image",{"title":813,"_path":814,"children":815},"イベント","/document/events",[816,817,819,822,825],{"title":813,"_path":814},{"title":813,"_path":818},"/document/events/events",{"title":820,"_path":821},"キーボードイベント","/document/events/keyboard-events",{"title":823,"_path":824},"マウスイベント","/document/events/mouse-events",{"title":826,"_path":827},"SelectionRangeChanged","/document/events/selection-events",{"title":829,"_path":830,"children":831},"カスタマイズ","/document/customization",[832,833,836,839,842,845,848],{"title":829,"_path":830},{"title":834,"_path":835},"コントロールの外観","/document/customization/control-appearance",{"title":837,"_path":838},"シートタブコントロール","/document/customization/sheet-tab-control",{"title":840,"_path":841},"使用可能なホットキー","/document/customization/hot-keys",{"title":843,"_path":844},"言語ローカライズ","/document/customization/language-localization",{"title":846,"_path":847},"アドレスバーと数式バー","/document/customization/formula-bar",{"title":849,"_path":850},"ReoGridEditor","/document/customization/editor",{"title":852,"_path":853,"children":854},"アクション","/document/actions",[855,856,859],{"title":852,"_path":853},{"title":857,"_path":858},"ReoGridアクションフレームワーク","/document/actions/actions",{"title":860,"_path":861},"組み込みワークシートアクション","/document/actions/built-in-actions",{"title":863,"_path":864,"children":865},"ファイル形式","/document/io",[866,867,870,873,876,879],{"title":863,"_path":864},{"title":868,"_path":869},"Excelファイル形式 (xlsx)","/document/io/excel-file-format",{"title":871,"_path":872},"CSV形式","/document/io/csv-format",{"title":874,"_path":875},"RGF形式","/document/io/rgf-format",{"title":877,"_path":878},"Excel形式とRGF形式の違い","/document/io/difference-between-excel-and-rgf-format",{"title":880,"_path":881},"HTMLとしてエクスポート","/document/io/export-as-html",{"title":883,"_path":884,"children":885},"高度な機能","/document/advanced",[886,887,890,893,896,899],{"title":883,"_path":884},{"title":888,"_path":889},"メモリワークブック","/document/advanced/memory-workbook",{"title":891,"_path":892},"ページングと印刷","/document/advanced/paging-and-print",{"title":894,"_path":895},"コントロールのリセット","/document/advanced/reset-control",{"title":897,"_path":898},"パフォーマンス","/document/advanced/performance",{"title":900,"_path":901},"設定","/document/advanced/settings",{"title":903,"_path":904,"children":905},"ハウツーガイド","/document/how-to",[906,907,910,913,916,919,922,925,928],{"title":903,"_path":904},{"title":908,"_path":909},"ReoGridの推奨プラクティス","/document/how-to/recommended-practice-for-using-reogrid",{"title":911,"_path":912},"DataTableでスプレッドシートを埋める","/document/how-to/fill-grid-with-datatable",{"title":914,"_path":915},"遅延読み込みモードによる大量データの高速読み込み","/document/how-to/fast-load-large-data-with-lazy-load-mode",{"title":917,"_path":918},"カスタムドロップダウンセルの作成","/document/how-to/create-custom-drop-down-cell",{"title":920,"_path":921},"日付ピッカーセルの作成","/document/how-to/create-date-picker-cell",{"title":923,"_path":924},"Excelファイルからすべての画像を読み取る","/document/how-to/read-all-images-from-excel-file",{"title":926,"_path":927},"VB.NETでReoGridを使用するためのヒント","/document/how-to/use-reogrid-in-vb-net",{"title":929,"_path":930},"全選択チェックボックスヘッダーの作成","/document/how-to/create-select-all-checkbox-header",{"title":932,"_path":933,"children":934},"トラブルシューティング","/document/troubleshooting",[935,936],{"title":932,"_path":933},{"title":937,"_path":938},"PInvoke例外の修正","/document/troubleshooting/fix-pinvoke-exception",{"title":940,"_path":941},"エディション・機能一覧","/editions-features",{"title":943,"_path":944},"個人情報保護方針","/privacy-policy",{"title":946,"_path":947},"動作環境","/requirements",{"title":949,"_path":950},"ReoGrid利用許諾契約書","/terms",{"title":952,"_path":953},"ReoGrid利用許諾契約書(Ver.3)","/terms-v3",{"title":955,"_path":956},"ReoGrid利用許諾契約書(Ver.4)","/terms-v4",{"title":958,"_path":959},"ReoGrid 4 トライアルライセンスポリシー","/terms-v4-trial",{"title":961,"_path":962},"ReoGrid Web Edition 利用許諾契約書","/terms-web",1786025060724]