[{"data":1,"prerenderedAt":3063},["ShallowReactive",2],{"content-query-B5p4dWRBu1":3,"navigation":2717},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"body":11,"_type":2710,"_id":2711,"_source":2712,"_file":2713,"_stem":2714,"_extension":2715,"sitemap":2716},"/document/data/conditional-filter","data",false,"","条件付きフィルター","ConditionalDataFilter を使用して、列ルールのセットを満たさない値を持つ行を非表示にします。フィルターはワークシート範囲にアタッチされた ColumnBasedDataSource に対して動作し、他の行フィルター（例：フリーテキスト検索）と組み合わせることができます。","2025-12-25",{"type":12,"children":13,"toc":2694},"root",[14,21,42,48,137,142,161,707,712,1100,1105,1142,1375,1410,1416,1422,1571,1576,1699,1705,1893,2038,2044,2345,2351,2437,2443,2495,2501,2506,2657,2662,2688],{"type":15,"tag":16,"props":17,"children":18},"element","h1",{"id":8},[19],{"type":20,"value":8},"text",{"type":15,"tag":22,"props":23,"children":24},"p",{},[25,32,34,40],{"type":15,"tag":26,"props":27,"children":29},"code",{"className":28},[],[30],{"type":20,"value":31},"ConditionalDataFilter",{"type":20,"value":33}," を使用して、列ルールのセットを満たさない値を持つ行を非表示にします。フィルターはワークシート範囲にアタッチされた ",{"type":15,"tag":26,"props":35,"children":37},{"className":36},[],[38],{"type":20,"value":39},"ColumnBasedDataSource",{"type":20,"value":41}," に対して動作し、他の行フィルター（例：フリーテキスト検索）と組み合わせることができます。",{"type":15,"tag":43,"props":44,"children":46},"h2",{"id":45},"前提条件",[47],{"type":20,"value":45},{"type":15,"tag":49,"props":50,"children":51},"ul",{},[52,81,116],{"type":15,"tag":53,"props":54,"children":55},"li",{},[56,58,63,65,71,73,79],{"type":20,"value":57},"フィルタリングしたい各列に名前を付けた ",{"type":15,"tag":26,"props":59,"children":61},{"className":60},[],[62],{"type":20,"value":39},{"type":20,"value":64}," をアタッチしてください：\n",{"type":15,"tag":26,"props":66,"children":68},{"className":67},[],[69],{"type":20,"value":70},"sheet.AddDataSource(range, dataSource);",{"type":20,"value":72},"\n範囲にデータソースがないか、データソースが列ベースでない場合、",{"type":15,"tag":26,"props":74,"children":76},{"className":75},[],[77],{"type":20,"value":78},"Worksheet.DoFilter",{"type":20,"value":80}," は例外をスローします。",{"type":15,"tag":53,"props":82,"children":83},{},[84,90,92,98,100,106,108,114],{"type":15,"tag":26,"props":85,"children":87},{"className":86},[],[88],{"type":20,"value":89},"FilterCondition.ColumnID",{"type":20,"value":91}," の列IDは ",{"type":15,"tag":26,"props":93,"children":95},{"className":94},[],[96],{"type":20,"value":97},"ColumnBasedDataSource.Columns",{"type":20,"value":99}," に存在する必要があります。存在しない場合、",{"type":15,"tag":26,"props":101,"children":103},{"className":102},[],[104],{"type":20,"value":105},"BeginFilter",{"type":20,"value":107}," 中に ",{"type":15,"tag":26,"props":109,"children":111},{"className":110},[],[112],{"type":20,"value":113},"ColumnDefineNotFoundException",{"type":20,"value":115}," が発生します。",{"type":15,"tag":53,"props":117,"children":118},{},[119,121,127,129,135],{"type":20,"value":120},"フィルタリングは行の高さを ",{"type":15,"tag":26,"props":122,"children":124},{"className":123},[],[125],{"type":20,"value":126},"0",{"type":20,"value":128}," に設定して行を非表示にします。すべてのフィルターの組み合わせは ",{"type":15,"tag":26,"props":130,"children":132},{"className":131},[],[133],{"type":20,"value":134},"Worksheet.DoFilter(range, filter);",{"type":20,"value":136}," を呼び出す必要があります。",{"type":15,"tag":43,"props":138,"children":140},{"id":139},"ルールの作成と管理",[141],{"type":20,"value":139},{"type":15,"tag":22,"props":143,"children":144},{},[145,151,153,159],{"type":15,"tag":26,"props":146,"children":148},{"className":147},[],[149],{"type":20,"value":150},"ConditionalDataFilter.Conditions",{"type":20,"value":152}," にアクティブなルールが保持されます。項目を追加またはクリアし、",{"type":15,"tag":26,"props":154,"children":156},{"className":155},[],[157],{"type":20,"value":158},"FilterCondition.IsEnabled",{"type":20,"value":160}," を切り替えて実行内容を制御します。",{"type":15,"tag":162,"props":163,"children":167},"pre",{"className":164,"code":165,"language":166,"meta":7,"style":7},"language-csharp shiki shiki-themes github-light github-dark github-light","using unvell.ReoGrid;\nusing unvell.ReoGrid.Data;\nusing unvell.ReoGrid.Data.ConditionFilter;\n\nvar sheet = grid.CurrentWorksheet;\nvar (ds, range) = BuildColumnDataSource();     // returns ColumnBasedDataSource + its range\nsheet.AddDataSource(range, ds);\n\nvar filter = new ConditionalDataFilter\n{\n    ErrorOnMismatchedType = false,             // throw on numeric/type mismatch if true\n};\n\nfilter.Conditions.AddRange(\n    new FilterCondition(\"price\", ConditionOperator.GreaterThan, 1000),\n    new FilterCondition(\"currency\", ConditionOperator.Equals, \"USD\", CellDataKind.Value, ComparisonType.Text),\n    new FilterCondition(\"tradeDate\", ConditionOperator.Equals, \"2024-05\") // month‑level match\n);\n\nfilter.OnApply += (s, e) => sheet.DoFilter(range, filter);\nfilter.Apply();                                // evaluates rules and hides rows\n","csharp",[168],{"type":15,"tag":26,"props":169,"children":170},{"__ignoreMap":7},[171,205,238,279,289,313,367,386,394,421,430,459,468,476,495,535,571,610,619,627,683],{"type":15,"tag":172,"props":173,"children":176},"span",{"class":174,"line":175},"line",1,[177,183,189,195,200],{"type":15,"tag":172,"props":178,"children":180},{"style":179},"--shiki-light:#D73A49;--shiki-dark:#F97583;--shiki-default:#D73A49",[181],{"type":20,"value":182},"using",{"type":15,"tag":172,"props":184,"children":186},{"style":185},"--shiki-light:#6F42C1;--shiki-dark:#B392F0;--shiki-default:#6F42C1",[187],{"type":20,"value":188}," unvell",{"type":15,"tag":172,"props":190,"children":192},{"style":191},"--shiki-light:#24292E;--shiki-dark:#E1E4E8;--shiki-default:#24292E",[193],{"type":20,"value":194},".",{"type":15,"tag":172,"props":196,"children":197},{"style":185},[198],{"type":20,"value":199},"ReoGrid",{"type":15,"tag":172,"props":201,"children":202},{"style":191},[203],{"type":20,"value":204},";\n",{"type":15,"tag":172,"props":206,"children":208},{"class":174,"line":207},2,[209,213,217,221,225,229,234],{"type":15,"tag":172,"props":210,"children":211},{"style":179},[212],{"type":20,"value":182},{"type":15,"tag":172,"props":214,"children":215},{"style":185},[216],{"type":20,"value":188},{"type":15,"tag":172,"props":218,"children":219},{"style":191},[220],{"type":20,"value":194},{"type":15,"tag":172,"props":222,"children":223},{"style":185},[224],{"type":20,"value":199},{"type":15,"tag":172,"props":226,"children":227},{"style":191},[228],{"type":20,"value":194},{"type":15,"tag":172,"props":230,"children":231},{"style":185},[232],{"type":20,"value":233},"Data",{"type":15,"tag":172,"props":235,"children":236},{"style":191},[237],{"type":20,"value":204},{"type":15,"tag":172,"props":239,"children":241},{"class":174,"line":240},3,[242,246,250,254,258,262,266,270,275],{"type":15,"tag":172,"props":243,"children":244},{"style":179},[245],{"type":20,"value":182},{"type":15,"tag":172,"props":247,"children":248},{"style":185},[249],{"type":20,"value":188},{"type":15,"tag":172,"props":251,"children":252},{"style":191},[253],{"type":20,"value":194},{"type":15,"tag":172,"props":255,"children":256},{"style":185},[257],{"type":20,"value":199},{"type":15,"tag":172,"props":259,"children":260},{"style":191},[261],{"type":20,"value":194},{"type":15,"tag":172,"props":263,"children":264},{"style":185},[265],{"type":20,"value":233},{"type":15,"tag":172,"props":267,"children":268},{"style":191},[269],{"type":20,"value":194},{"type":15,"tag":172,"props":271,"children":272},{"style":185},[273],{"type":20,"value":274},"ConditionFilter",{"type":15,"tag":172,"props":276,"children":277},{"style":191},[278],{"type":20,"value":204},{"type":15,"tag":172,"props":280,"children":282},{"class":174,"line":281},4,[283],{"type":15,"tag":172,"props":284,"children":286},{"emptyLinePlaceholder":285},true,[287],{"type":20,"value":288},"\n",{"type":15,"tag":172,"props":290,"children":292},{"class":174,"line":291},5,[293,298,303,308],{"type":15,"tag":172,"props":294,"children":295},{"style":179},[296],{"type":20,"value":297},"var",{"type":15,"tag":172,"props":299,"children":300},{"style":185},[301],{"type":20,"value":302}," sheet",{"type":15,"tag":172,"props":304,"children":305},{"style":179},[306],{"type":20,"value":307}," =",{"type":15,"tag":172,"props":309,"children":310},{"style":191},[311],{"type":20,"value":312}," grid.CurrentWorksheet;\n",{"type":15,"tag":172,"props":314,"children":316},{"class":174,"line":315},6,[317,321,326,331,336,341,346,351,356,361],{"type":15,"tag":172,"props":318,"children":319},{"style":179},[320],{"type":20,"value":297},{"type":15,"tag":172,"props":322,"children":323},{"style":191},[324],{"type":20,"value":325}," (",{"type":15,"tag":172,"props":327,"children":328},{"style":185},[329],{"type":20,"value":330},"ds",{"type":15,"tag":172,"props":332,"children":333},{"style":191},[334],{"type":20,"value":335},", ",{"type":15,"tag":172,"props":337,"children":338},{"style":185},[339],{"type":20,"value":340},"range",{"type":15,"tag":172,"props":342,"children":343},{"style":191},[344],{"type":20,"value":345},") ",{"type":15,"tag":172,"props":347,"children":348},{"style":179},[349],{"type":20,"value":350},"=",{"type":15,"tag":172,"props":352,"children":353},{"style":185},[354],{"type":20,"value":355}," BuildColumnDataSource",{"type":15,"tag":172,"props":357,"children":358},{"style":191},[359],{"type":20,"value":360},"();     ",{"type":15,"tag":172,"props":362,"children":364},{"style":363},"--shiki-light:#6A737D;--shiki-dark:#6A737D;--shiki-default:#6A737D",[365],{"type":20,"value":366},"// returns ColumnBasedDataSource + its range\n",{"type":15,"tag":172,"props":368,"children":370},{"class":174,"line":369},7,[371,376,381],{"type":15,"tag":172,"props":372,"children":373},{"style":191},[374],{"type":20,"value":375},"sheet.",{"type":15,"tag":172,"props":377,"children":378},{"style":185},[379],{"type":20,"value":380},"AddDataSource",{"type":15,"tag":172,"props":382,"children":383},{"style":191},[384],{"type":20,"value":385},"(range, ds);\n",{"type":15,"tag":172,"props":387,"children":389},{"class":174,"line":388},8,[390],{"type":15,"tag":172,"props":391,"children":392},{"emptyLinePlaceholder":285},[393],{"type":20,"value":288},{"type":15,"tag":172,"props":395,"children":397},{"class":174,"line":396},9,[398,402,407,411,416],{"type":15,"tag":172,"props":399,"children":400},{"style":179},[401],{"type":20,"value":297},{"type":15,"tag":172,"props":403,"children":404},{"style":185},[405],{"type":20,"value":406}," filter",{"type":15,"tag":172,"props":408,"children":409},{"style":179},[410],{"type":20,"value":307},{"type":15,"tag":172,"props":412,"children":413},{"style":179},[414],{"type":20,"value":415}," new",{"type":15,"tag":172,"props":417,"children":418},{"style":185},[419],{"type":20,"value":420}," ConditionalDataFilter\n",{"type":15,"tag":172,"props":422,"children":424},{"class":174,"line":423},10,[425],{"type":15,"tag":172,"props":426,"children":427},{"style":191},[428],{"type":20,"value":429},"{\n",{"type":15,"tag":172,"props":431,"children":433},{"class":174,"line":432},11,[434,439,443,449,454],{"type":15,"tag":172,"props":435,"children":436},{"style":191},[437],{"type":20,"value":438},"    ErrorOnMismatchedType ",{"type":15,"tag":172,"props":440,"children":441},{"style":179},[442],{"type":20,"value":350},{"type":15,"tag":172,"props":444,"children":446},{"style":445},"--shiki-light:#005CC5;--shiki-dark:#79B8FF;--shiki-default:#005CC5",[447],{"type":20,"value":448}," false",{"type":15,"tag":172,"props":450,"children":451},{"style":191},[452],{"type":20,"value":453},",             ",{"type":15,"tag":172,"props":455,"children":456},{"style":363},[457],{"type":20,"value":458},"// throw on numeric/type mismatch if true\n",{"type":15,"tag":172,"props":460,"children":462},{"class":174,"line":461},12,[463],{"type":15,"tag":172,"props":464,"children":465},{"style":191},[466],{"type":20,"value":467},"};\n",{"type":15,"tag":172,"props":469,"children":471},{"class":174,"line":470},13,[472],{"type":15,"tag":172,"props":473,"children":474},{"emptyLinePlaceholder":285},[475],{"type":20,"value":288},{"type":15,"tag":172,"props":477,"children":479},{"class":174,"line":478},14,[480,485,490],{"type":15,"tag":172,"props":481,"children":482},{"style":191},[483],{"type":20,"value":484},"filter.Conditions.",{"type":15,"tag":172,"props":486,"children":487},{"style":185},[488],{"type":20,"value":489},"AddRange",{"type":15,"tag":172,"props":491,"children":492},{"style":191},[493],{"type":20,"value":494},"(\n",{"type":15,"tag":172,"props":496,"children":498},{"class":174,"line":497},15,[499,504,509,514,520,525,530],{"type":15,"tag":172,"props":500,"children":501},{"style":179},[502],{"type":20,"value":503},"    new",{"type":15,"tag":172,"props":505,"children":506},{"style":185},[507],{"type":20,"value":508}," FilterCondition",{"type":15,"tag":172,"props":510,"children":511},{"style":191},[512],{"type":20,"value":513},"(",{"type":15,"tag":172,"props":515,"children":517},{"style":516},"--shiki-light:#032F62;--shiki-dark:#9ECBFF;--shiki-default:#032F62",[518],{"type":20,"value":519},"\"price\"",{"type":15,"tag":172,"props":521,"children":522},{"style":191},[523],{"type":20,"value":524},", ConditionOperator.GreaterThan, ",{"type":15,"tag":172,"props":526,"children":527},{"style":445},[528],{"type":20,"value":529},"1000",{"type":15,"tag":172,"props":531,"children":532},{"style":191},[533],{"type":20,"value":534},"),\n",{"type":15,"tag":172,"props":536,"children":538},{"class":174,"line":537},16,[539,543,547,551,556,561,566],{"type":15,"tag":172,"props":540,"children":541},{"style":179},[542],{"type":20,"value":503},{"type":15,"tag":172,"props":544,"children":545},{"style":185},[546],{"type":20,"value":508},{"type":15,"tag":172,"props":548,"children":549},{"style":191},[550],{"type":20,"value":513},{"type":15,"tag":172,"props":552,"children":553},{"style":516},[554],{"type":20,"value":555},"\"currency\"",{"type":15,"tag":172,"props":557,"children":558},{"style":191},[559],{"type":20,"value":560},", ConditionOperator.Equals, ",{"type":15,"tag":172,"props":562,"children":563},{"style":516},[564],{"type":20,"value":565},"\"USD\"",{"type":15,"tag":172,"props":567,"children":568},{"style":191},[569],{"type":20,"value":570},", CellDataKind.Value, ComparisonType.Text),\n",{"type":15,"tag":172,"props":572,"children":574},{"class":174,"line":573},17,[575,579,583,587,592,596,601,605],{"type":15,"tag":172,"props":576,"children":577},{"style":179},[578],{"type":20,"value":503},{"type":15,"tag":172,"props":580,"children":581},{"style":185},[582],{"type":20,"value":508},{"type":15,"tag":172,"props":584,"children":585},{"style":191},[586],{"type":20,"value":513},{"type":15,"tag":172,"props":588,"children":589},{"style":516},[590],{"type":20,"value":591},"\"tradeDate\"",{"type":15,"tag":172,"props":593,"children":594},{"style":191},[595],{"type":20,"value":560},{"type":15,"tag":172,"props":597,"children":598},{"style":516},[599],{"type":20,"value":600},"\"2024-05\"",{"type":15,"tag":172,"props":602,"children":603},{"style":191},[604],{"type":20,"value":345},{"type":15,"tag":172,"props":606,"children":607},{"style":363},[608],{"type":20,"value":609},"// month‑level match\n",{"type":15,"tag":172,"props":611,"children":613},{"class":174,"line":612},18,[614],{"type":15,"tag":172,"props":615,"children":616},{"style":191},[617],{"type":20,"value":618},");\n",{"type":15,"tag":172,"props":620,"children":622},{"class":174,"line":621},19,[623],{"type":15,"tag":172,"props":624,"children":625},{"emptyLinePlaceholder":285},[626],{"type":20,"value":288},{"type":15,"tag":172,"props":628,"children":630},{"class":174,"line":629},20,[631,636,641,645,650,654,659,663,668,673,678],{"type":15,"tag":172,"props":632,"children":633},{"style":191},[634],{"type":20,"value":635},"filter.OnApply ",{"type":15,"tag":172,"props":637,"children":638},{"style":179},[639],{"type":20,"value":640},"+=",{"type":15,"tag":172,"props":642,"children":643},{"style":191},[644],{"type":20,"value":325},{"type":15,"tag":172,"props":646,"children":647},{"style":185},[648],{"type":20,"value":649},"s",{"type":15,"tag":172,"props":651,"children":652},{"style":191},[653],{"type":20,"value":335},{"type":15,"tag":172,"props":655,"children":656},{"style":185},[657],{"type":20,"value":658},"e",{"type":15,"tag":172,"props":660,"children":661},{"style":191},[662],{"type":20,"value":345},{"type":15,"tag":172,"props":664,"children":665},{"style":179},[666],{"type":20,"value":667},"=>",{"type":15,"tag":172,"props":669,"children":670},{"style":191},[671],{"type":20,"value":672}," sheet.",{"type":15,"tag":172,"props":674,"children":675},{"style":185},[676],{"type":20,"value":677},"DoFilter",{"type":15,"tag":172,"props":679,"children":680},{"style":191},[681],{"type":20,"value":682},"(range, filter);\n",{"type":15,"tag":172,"props":684,"children":686},{"class":174,"line":685},21,[687,692,697,702],{"type":15,"tag":172,"props":688,"children":689},{"style":191},[690],{"type":20,"value":691},"filter.",{"type":15,"tag":172,"props":693,"children":694},{"style":185},[695],{"type":20,"value":696},"Apply",{"type":15,"tag":172,"props":698,"children":699},{"style":191},[700],{"type":20,"value":701},"();                                ",{"type":15,"tag":172,"props":703,"children":704},{"style":363},[705],{"type":20,"value":706},"// evaluates rules and hides rows\n",{"type":15,"tag":43,"props":708,"children":710},{"id":709},"主要なルール設定",[711],{"type":20,"value":709},{"type":15,"tag":49,"props":713,"children":714},{},[715,812,845,1008,1049,1082],{"type":15,"tag":53,"props":716,"children":717},{},[718,724,725,731,733,739,741,747,748,754,755,761,762,768,769,775,776,782,783,789,790,796,797,803,804,810],{"type":15,"tag":719,"props":720,"children":721},"strong",{},[722],{"type":20,"value":723},"演算子",{"type":20,"value":325},{"type":15,"tag":26,"props":726,"children":728},{"className":727},[],[729],{"type":20,"value":730},"ConditionOperator",{"type":20,"value":732},"): ",{"type":15,"tag":26,"props":734,"children":736},{"className":735},[],[737],{"type":20,"value":738},"Equals",{"type":20,"value":740},"、",{"type":15,"tag":26,"props":742,"children":744},{"className":743},[],[745],{"type":20,"value":746},"NotEquals",{"type":20,"value":740},{"type":15,"tag":26,"props":749,"children":751},{"className":750},[],[752],{"type":20,"value":753},"StartsWith",{"type":20,"value":740},{"type":15,"tag":26,"props":756,"children":758},{"className":757},[],[759],{"type":20,"value":760},"EndsWith",{"type":20,"value":740},{"type":15,"tag":26,"props":763,"children":765},{"className":764},[],[766],{"type":20,"value":767},"Contains",{"type":20,"value":740},{"type":15,"tag":26,"props":770,"children":772},{"className":771},[],[773],{"type":20,"value":774},"NotContains",{"type":20,"value":740},{"type":15,"tag":26,"props":777,"children":779},{"className":778},[],[780],{"type":20,"value":781},"GreaterThan",{"type":20,"value":740},{"type":15,"tag":26,"props":784,"children":786},{"className":785},[],[787],{"type":20,"value":788},"EqualsOrGreaterThan",{"type":20,"value":740},{"type":15,"tag":26,"props":791,"children":793},{"className":792},[],[794],{"type":20,"value":795},"LessThan",{"type":20,"value":740},{"type":15,"tag":26,"props":798,"children":800},{"className":799},[],[801],{"type":20,"value":802},"EqualsOrLessThan",{"type":20,"value":740},{"type":15,"tag":26,"props":805,"children":807},{"className":806},[],[808],{"type":20,"value":809},"Includes",{"type":20,"value":811},"（配列メンバーシップ）。",{"type":15,"tag":53,"props":813,"children":814},{},[815,820,822,828,830,836,838,843],{"type":15,"tag":719,"props":816,"children":817},{},[818],{"type":20,"value":819},"列",{"type":20,"value":821},": ",{"type":15,"tag":26,"props":823,"children":825},{"className":824},[],[826],{"type":20,"value":827},"ColumnID",{"type":20,"value":829}," はデータソースの列名と一致する必要があります。",{"type":15,"tag":26,"props":831,"children":833},{"className":832},[],[834],{"type":20,"value":835},"ColumnIndex",{"type":20,"value":837}," は ",{"type":15,"tag":26,"props":839,"children":841},{"className":840},[],[842],{"type":20,"value":105},{"type":20,"value":844}," 中に自動的に割り当てられます。",{"type":15,"tag":53,"props":846,"children":847},{},[848,853,854,860,862,868,870],{"type":15,"tag":719,"props":849,"children":850},{},[851],{"type":20,"value":852},"値の解析",{"type":20,"value":325},{"type":15,"tag":26,"props":855,"children":857},{"className":856},[],[858],{"type":20,"value":859},"ComparisonType",{"type":20,"value":861},"): デフォルトの ",{"type":15,"tag":26,"props":863,"children":865},{"className":864},[],[866],{"type":20,"value":867},"Auto",{"type":20,"value":869}," は数値 → 日時 → テキストの順で試行します。\n",{"type":15,"tag":49,"props":871,"children":872},{},[873,902,959],{"type":15,"tag":53,"props":874,"children":875},{},[876,878,884,886,892,894,900],{"type":20,"value":877},"数値解析は、数値、文字列、",{"type":15,"tag":26,"props":879,"children":881},{"className":880},[],[882],{"type":20,"value":883},"StringBuilder",{"type":20,"value":885},"、および ",{"type":15,"tag":26,"props":887,"children":889},{"className":888},[],[890],{"type":20,"value":891},"\"100%\"",{"type":20,"value":893}," のようなパーセンテージ（",{"type":15,"tag":26,"props":895,"children":897},{"className":896},[],[898],{"type":20,"value":899},"0.0～1.0",{"type":20,"value":901}," の範囲）を受け付けます。",{"type":15,"tag":53,"props":903,"children":904},{},[905,907,913,915,921,922,928,929,935,936,942,943,949,951,957],{"type":20,"value":906},"日時解析は、",{"type":15,"tag":26,"props":908,"children":910},{"className":909},[],[911],{"type":20,"value":912},"DateTime",{"type":20,"value":914}," 値と多くの文字列形式（",{"type":15,"tag":26,"props":916,"children":918},{"className":917},[],[919],{"type":20,"value":920},"yyyy/MM/dd",{"type":20,"value":740},{"type":15,"tag":26,"props":923,"children":925},{"className":924},[],[926],{"type":20,"value":927},"yyyyMMdd",{"type":20,"value":740},{"type":15,"tag":26,"props":930,"children":932},{"className":931},[],[933],{"type":20,"value":934},"yyyy-M",{"type":20,"value":740},{"type":15,"tag":26,"props":937,"children":939},{"className":938},[],[940],{"type":20,"value":941},"yyyy年M月d日",{"type":20,"value":740},{"type":15,"tag":26,"props":944,"children":946},{"className":945},[],[947],{"type":20,"value":948},"h:m[:s]",{"type":20,"value":950},"、および一般的な ",{"type":15,"tag":26,"props":952,"children":954},{"className":953},[],[955],{"type":20,"value":956},"DateTime.TryParse",{"type":20,"value":958},"）を受け付けます。",{"type":15,"tag":53,"props":960,"children":961},{},[962,964,970,972,978,979,985,986,992,993,999,1000,1006],{"type":20,"value":963},"日付の等価比較は、形式から推論される ",{"type":15,"tag":26,"props":965,"children":967},{"className":966},[],[968],{"type":20,"value":969},"DateTimeValidPart",{"type":20,"value":971},"（例：",{"type":15,"tag":26,"props":973,"children":975},{"className":974},[],[976],{"type":20,"value":977},"YYYY",{"type":20,"value":740},{"type":15,"tag":26,"props":980,"children":982},{"className":981},[],[983],{"type":20,"value":984},"YYYYMM",{"type":20,"value":740},{"type":15,"tag":26,"props":987,"children":989},{"className":988},[],[990],{"type":20,"value":991},"YYYYMMDD",{"type":20,"value":740},{"type":15,"tag":26,"props":994,"children":996},{"className":995},[],[997],{"type":20,"value":998},"HHMM",{"type":20,"value":740},{"type":15,"tag":26,"props":1001,"children":1003},{"className":1002},[],[1004],{"type":20,"value":1005},"HHMMSS",{"type":20,"value":1007},"）を尊重します。",{"type":15,"tag":53,"props":1009,"children":1010},{},[1011,1016,1017,1023,1025,1031,1033,1039,1041,1047],{"type":15,"tag":719,"props":1012,"children":1013},{},[1014],{"type":20,"value":1015},"比較対象",{"type":20,"value":325},{"type":15,"tag":26,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":20,"value":1022},"ComparisonDataKind",{"type":20,"value":1024},"): 生の値を比較するには ",{"type":15,"tag":26,"props":1026,"children":1028},{"className":1027},[],[1029],{"type":20,"value":1030},"CellDataKind.Value",{"type":20,"value":1032},"（デフォルト）を、書式設定されたテキストを比較するには ",{"type":15,"tag":26,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":20,"value":1038},"CellDataKind.DisplayText",{"type":20,"value":1040}," を使用します。サンプルUIは、レンダリングされた文字列と一致させる場合に日付列を ",{"type":15,"tag":26,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":20,"value":1046},"DisplayText",{"type":20,"value":1048}," に切り替えます。",{"type":15,"tag":53,"props":1050,"children":1051},{},[1052,1057,1058,1064,1066,1072,1074,1080],{"type":15,"tag":719,"props":1053,"children":1054},{},[1055],{"type":20,"value":1056},"配列ルール",{"type":20,"value":821},{"type":15,"tag":26,"props":1059,"children":1061},{"className":1060},[],[1062],{"type":20,"value":1063},"ConditionOperator.Includes",{"type":20,"value":1065}," は任意の ",{"type":15,"tag":26,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":20,"value":1071},"IEnumerable",{"type":20,"value":1073}," を受け付けます。数値メンバーを要求するには ",{"type":15,"tag":26,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":20,"value":1079},"ComparisonType.Numeric",{"type":20,"value":1081}," を設定します。",{"type":15,"tag":53,"props":1083,"children":1084},{},[1085,1090,1092,1098],{"type":15,"tag":719,"props":1086,"children":1087},{},[1088],{"type":20,"value":1089},"Null/空の処理",{"type":20,"value":1091},": 空文字列と ",{"type":15,"tag":26,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":20,"value":1097},"null",{"type":20,"value":1099}," は等価チェック中に等しいものとして扱われます。",{"type":15,"tag":43,"props":1101,"children":1103},{"id":1102},"単独または組み合わせでフィルターを適用",[1104],{"type":20,"value":1102},{"type":15,"tag":22,"props":1106,"children":1107},{},[1108,1110,1116,1118,1124,1126,1132,1134,1140],{"type":20,"value":1109},"ルールが変更されたときに ",{"type":15,"tag":26,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":20,"value":1115},"Worksheet.DoFilter(range, filter)",{"type":20,"value":1117}," を呼び出します。一般的なパターンは、UIの変更が再適用をトリガーするように、フィルターの ",{"type":15,"tag":26,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":20,"value":1123},"OnApply",{"type":20,"value":1125}," イベントから実行することです。他のフィルター（例：",{"type":15,"tag":26,"props":1127,"children":1129},{"className":1128},[],[1130],{"type":20,"value":1131},"TextSearchDataFilter",{"type":20,"value":1133},"）と組み合わせるには、",{"type":15,"tag":26,"props":1135,"children":1137},{"className":1136},[],[1138],{"type":20,"value":1139},"MultipleDataFilter",{"type":20,"value":1141}," でラップします：",{"type":15,"tag":162,"props":1143,"children":1145},{"className":164,"code":1144,"language":166,"meta":7,"style":7},"var condition = new ConditionalDataFilter();\nvar search = new TextSearchDataFilter();\nvar filters = new MultipleDataFilter();\nfilters.Filters.Add(condition);\nfilters.Filters.Add(search);\n\ncondition.OnApply += (s, e) => sheet.DoFilter(range, filters);\nsearch.OnApply += (s, e) => sheet.DoFilter(range, filters);\n",[1146],{"type":15,"tag":26,"props":1147,"children":1148},{"__ignoreMap":7},[1149,1179,1208,1237,1255,1271,1278,1327],{"type":15,"tag":172,"props":1150,"children":1151},{"class":174,"line":175},[1152,1156,1161,1165,1169,1174],{"type":15,"tag":172,"props":1153,"children":1154},{"style":179},[1155],{"type":20,"value":297},{"type":15,"tag":172,"props":1157,"children":1158},{"style":185},[1159],{"type":20,"value":1160}," condition",{"type":15,"tag":172,"props":1162,"children":1163},{"style":179},[1164],{"type":20,"value":307},{"type":15,"tag":172,"props":1166,"children":1167},{"style":179},[1168],{"type":20,"value":415},{"type":15,"tag":172,"props":1170,"children":1171},{"style":185},[1172],{"type":20,"value":1173}," ConditionalDataFilter",{"type":15,"tag":172,"props":1175,"children":1176},{"style":191},[1177],{"type":20,"value":1178},"();\n",{"type":15,"tag":172,"props":1180,"children":1181},{"class":174,"line":207},[1182,1186,1191,1195,1199,1204],{"type":15,"tag":172,"props":1183,"children":1184},{"style":179},[1185],{"type":20,"value":297},{"type":15,"tag":172,"props":1187,"children":1188},{"style":185},[1189],{"type":20,"value":1190}," search",{"type":15,"tag":172,"props":1192,"children":1193},{"style":179},[1194],{"type":20,"value":307},{"type":15,"tag":172,"props":1196,"children":1197},{"style":179},[1198],{"type":20,"value":415},{"type":15,"tag":172,"props":1200,"children":1201},{"style":185},[1202],{"type":20,"value":1203}," TextSearchDataFilter",{"type":15,"tag":172,"props":1205,"children":1206},{"style":191},[1207],{"type":20,"value":1178},{"type":15,"tag":172,"props":1209,"children":1210},{"class":174,"line":240},[1211,1215,1220,1224,1228,1233],{"type":15,"tag":172,"props":1212,"children":1213},{"style":179},[1214],{"type":20,"value":297},{"type":15,"tag":172,"props":1216,"children":1217},{"style":185},[1218],{"type":20,"value":1219}," filters",{"type":15,"tag":172,"props":1221,"children":1222},{"style":179},[1223],{"type":20,"value":307},{"type":15,"tag":172,"props":1225,"children":1226},{"style":179},[1227],{"type":20,"value":415},{"type":15,"tag":172,"props":1229,"children":1230},{"style":185},[1231],{"type":20,"value":1232}," MultipleDataFilter",{"type":15,"tag":172,"props":1234,"children":1235},{"style":191},[1236],{"type":20,"value":1178},{"type":15,"tag":172,"props":1238,"children":1239},{"class":174,"line":281},[1240,1245,1250],{"type":15,"tag":172,"props":1241,"children":1242},{"style":191},[1243],{"type":20,"value":1244},"filters.Filters.",{"type":15,"tag":172,"props":1246,"children":1247},{"style":185},[1248],{"type":20,"value":1249},"Add",{"type":15,"tag":172,"props":1251,"children":1252},{"style":191},[1253],{"type":20,"value":1254},"(condition);\n",{"type":15,"tag":172,"props":1256,"children":1257},{"class":174,"line":291},[1258,1262,1266],{"type":15,"tag":172,"props":1259,"children":1260},{"style":191},[1261],{"type":20,"value":1244},{"type":15,"tag":172,"props":1263,"children":1264},{"style":185},[1265],{"type":20,"value":1249},{"type":15,"tag":172,"props":1267,"children":1268},{"style":191},[1269],{"type":20,"value":1270},"(search);\n",{"type":15,"tag":172,"props":1272,"children":1273},{"class":174,"line":315},[1274],{"type":15,"tag":172,"props":1275,"children":1276},{"emptyLinePlaceholder":285},[1277],{"type":20,"value":288},{"type":15,"tag":172,"props":1279,"children":1280},{"class":174,"line":369},[1281,1286,1290,1294,1298,1302,1306,1310,1314,1318,1322],{"type":15,"tag":172,"props":1282,"children":1283},{"style":191},[1284],{"type":20,"value":1285},"condition.OnApply ",{"type":15,"tag":172,"props":1287,"children":1288},{"style":179},[1289],{"type":20,"value":640},{"type":15,"tag":172,"props":1291,"children":1292},{"style":191},[1293],{"type":20,"value":325},{"type":15,"tag":172,"props":1295,"children":1296},{"style":185},[1297],{"type":20,"value":649},{"type":15,"tag":172,"props":1299,"children":1300},{"style":191},[1301],{"type":20,"value":335},{"type":15,"tag":172,"props":1303,"children":1304},{"style":185},[1305],{"type":20,"value":658},{"type":15,"tag":172,"props":1307,"children":1308},{"style":191},[1309],{"type":20,"value":345},{"type":15,"tag":172,"props":1311,"children":1312},{"style":179},[1313],{"type":20,"value":667},{"type":15,"tag":172,"props":1315,"children":1316},{"style":191},[1317],{"type":20,"value":672},{"type":15,"tag":172,"props":1319,"children":1320},{"style":185},[1321],{"type":20,"value":677},{"type":15,"tag":172,"props":1323,"children":1324},{"style":191},[1325],{"type":20,"value":1326},"(range, filters);\n",{"type":15,"tag":172,"props":1328,"children":1329},{"class":174,"line":388},[1330,1335,1339,1343,1347,1351,1355,1359,1363,1367,1371],{"type":15,"tag":172,"props":1331,"children":1332},{"style":191},[1333],{"type":20,"value":1334},"search.OnApply ",{"type":15,"tag":172,"props":1336,"children":1337},{"style":179},[1338],{"type":20,"value":640},{"type":15,"tag":172,"props":1340,"children":1341},{"style":191},[1342],{"type":20,"value":325},{"type":15,"tag":172,"props":1344,"children":1345},{"style":185},[1346],{"type":20,"value":649},{"type":15,"tag":172,"props":1348,"children":1349},{"style":191},[1350],{"type":20,"value":335},{"type":15,"tag":172,"props":1352,"children":1353},{"style":185},[1354],{"type":20,"value":658},{"type":15,"tag":172,"props":1356,"children":1357},{"style":191},[1358],{"type":20,"value":345},{"type":15,"tag":172,"props":1360,"children":1361},{"style":179},[1362],{"type":20,"value":667},{"type":15,"tag":172,"props":1364,"children":1365},{"style":191},[1366],{"type":20,"value":672},{"type":15,"tag":172,"props":1368,"children":1369},{"style":185},[1370],{"type":20,"value":677},{"type":15,"tag":172,"props":1372,"children":1373},{"style":191},[1374],{"type":20,"value":1326},{"type":15,"tag":22,"props":1376,"children":1377},{},[1378,1380,1386,1388,1394,1396,1401,1403,1408],{"type":20,"value":1379},"条件を変更したら（追加/削除、値の更新、",{"type":15,"tag":26,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":20,"value":1385},"IsEnabled",{"type":20,"value":1387}," の切り替え）、",{"type":15,"tag":26,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":20,"value":1393},"Apply()",{"type":20,"value":1395}," を呼び出して ",{"type":15,"tag":26,"props":1397,"children":1399},{"className":1398},[],[1400],{"type":20,"value":1123},{"type":20,"value":1402}," を発生させ、",{"type":15,"tag":26,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":20,"value":677},{"type":20,"value":1409}," を再実行します。",{"type":15,"tag":43,"props":1411,"children":1413},{"id":1412},"apiリファレンス",[1414],{"type":20,"value":1415},"APIリファレンス",{"type":15,"tag":1417,"props":1418,"children":1420},"h3",{"id":1419},"conditionaldatafilter",[1421],{"type":20,"value":31},{"type":15,"tag":1423,"props":1424,"children":1425},"table",{},[1426,1450],{"type":15,"tag":1427,"props":1428,"children":1429},"thead",{},[1430],{"type":15,"tag":1431,"props":1432,"children":1433},"tr",{},[1434,1440,1445],{"type":15,"tag":1435,"props":1436,"children":1437},"th",{},[1438],{"type":20,"value":1439},"メンバー",{"type":15,"tag":1435,"props":1441,"children":1442},{},[1443],{"type":20,"value":1444},"型",{"type":15,"tag":1435,"props":1446,"children":1447},{},[1448],{"type":20,"value":1449},"説明",{"type":15,"tag":1451,"props":1452,"children":1453},"tbody",{},[1454,1481,1513,1545],{"type":15,"tag":1431,"props":1455,"children":1456},{},[1457,1467,1476],{"type":15,"tag":1458,"props":1459,"children":1460},"td",{},[1461],{"type":15,"tag":26,"props":1462,"children":1464},{"className":1463},[],[1465],{"type":20,"value":1466},"Conditions",{"type":15,"tag":1458,"props":1468,"children":1469},{},[1470],{"type":15,"tag":26,"props":1471,"children":1473},{"className":1472},[],[1474],{"type":20,"value":1475},"ConditionCollection",{"type":15,"tag":1458,"props":1477,"children":1478},{},[1479],{"type":20,"value":1480},"フィルタールールのコレクション",{"type":15,"tag":1431,"props":1482,"children":1483},{},[1484,1493,1502],{"type":15,"tag":1458,"props":1485,"children":1486},{},[1487],{"type":15,"tag":26,"props":1488,"children":1490},{"className":1489},[],[1491],{"type":20,"value":1492},"ErrorOnMismatchedType",{"type":15,"tag":1458,"props":1494,"children":1495},{},[1496],{"type":15,"tag":26,"props":1497,"children":1499},{"className":1498},[],[1500],{"type":20,"value":1501},"bool",{"type":15,"tag":1458,"props":1503,"children":1504},{},[1505,1511],{"type":15,"tag":26,"props":1506,"children":1508},{"className":1507},[],[1509],{"type":20,"value":1510},"true",{"type":20,"value":1512}," の場合、比較中の型不一致で例外をスロー",{"type":15,"tag":1431,"props":1514,"children":1515},{},[1516,1524,1533],{"type":15,"tag":1458,"props":1517,"children":1518},{},[1519],{"type":15,"tag":26,"props":1520,"children":1522},{"className":1521},[],[1523],{"type":20,"value":1393},{"type":15,"tag":1458,"props":1525,"children":1526},{},[1527],{"type":15,"tag":26,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":20,"value":1532},"void",{"type":15,"tag":1458,"props":1534,"children":1535},{},[1536,1538,1543],{"type":20,"value":1537},"ルールを評価（",{"type":15,"tag":26,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":20,"value":1123},{"type":20,"value":1544}," を発生）",{"type":15,"tag":1431,"props":1546,"children":1547},{},[1548,1556,1561],{"type":15,"tag":1458,"props":1549,"children":1550},{},[1551],{"type":15,"tag":26,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":20,"value":1123},{"type":15,"tag":1458,"props":1557,"children":1558},{},[1559],{"type":20,"value":1560},"event",{"type":15,"tag":1458,"props":1562,"children":1563},{},[1564,1569],{"type":15,"tag":26,"props":1565,"children":1567},{"className":1566},[],[1568],{"type":20,"value":677},{"type":20,"value":1570}," を呼び出すためのハンドラー",{"type":15,"tag":1417,"props":1572,"children":1574},{"id":1573},"conditioncollection",[1575],{"type":20,"value":1475},{"type":15,"tag":1423,"props":1577,"children":1578},{},[1579,1594],{"type":15,"tag":1427,"props":1580,"children":1581},{},[1582],{"type":15,"tag":1431,"props":1583,"children":1584},{},[1585,1590],{"type":15,"tag":1435,"props":1586,"children":1587},{},[1588],{"type":20,"value":1589},"メソッド",{"type":15,"tag":1435,"props":1591,"children":1592},{},[1593],{"type":20,"value":1449},{"type":15,"tag":1451,"props":1595,"children":1596},{},[1597,1614,1631,1648,1665,1682],{"type":15,"tag":1431,"props":1598,"children":1599},{},[1600,1609],{"type":15,"tag":1458,"props":1601,"children":1602},{},[1603],{"type":15,"tag":26,"props":1604,"children":1606},{"className":1605},[],[1607],{"type":20,"value":1608},"Add(FilterCondition item)",{"type":15,"tag":1458,"props":1610,"children":1611},{},[1612],{"type":20,"value":1613},"ルールを追加",{"type":15,"tag":1431,"props":1615,"children":1616},{},[1617,1626],{"type":15,"tag":1458,"props":1618,"children":1619},{},[1620],{"type":15,"tag":26,"props":1621,"children":1623},{"className":1622},[],[1624],{"type":20,"value":1625},"AddRange(params FilterCondition[] items)",{"type":15,"tag":1458,"props":1627,"children":1628},{},[1629],{"type":20,"value":1630},"複数のルールを追加",{"type":15,"tag":1431,"props":1632,"children":1633},{},[1634,1643],{"type":15,"tag":1458,"props":1635,"children":1636},{},[1637],{"type":15,"tag":26,"props":1638,"children":1640},{"className":1639},[],[1641],{"type":20,"value":1642},"Remove(FilterCondition item)",{"type":15,"tag":1458,"props":1644,"children":1645},{},[1646],{"type":20,"value":1647},"ルールを削除",{"type":15,"tag":1431,"props":1649,"children":1650},{},[1651,1660],{"type":15,"tag":1458,"props":1652,"children":1653},{},[1654],{"type":15,"tag":26,"props":1655,"children":1657},{"className":1656},[],[1658],{"type":20,"value":1659},"Clear()",{"type":15,"tag":1458,"props":1661,"children":1662},{},[1663],{"type":20,"value":1664},"すべてのルールを削除",{"type":15,"tag":1431,"props":1666,"children":1667},{},[1668,1677],{"type":15,"tag":1458,"props":1669,"children":1670},{},[1671],{"type":15,"tag":26,"props":1672,"children":1674},{"className":1673},[],[1675],{"type":20,"value":1676},"Contains(FilterCondition item)",{"type":15,"tag":1458,"props":1678,"children":1679},{},[1680],{"type":20,"value":1681},"ルールが存在するか確認",{"type":15,"tag":1431,"props":1683,"children":1684},{},[1685,1694],{"type":15,"tag":1458,"props":1686,"children":1687},{},[1688],{"type":15,"tag":26,"props":1689,"children":1691},{"className":1690},[],[1692],{"type":20,"value":1693},"Count",{"type":15,"tag":1458,"props":1695,"children":1696},{},[1697],{"type":20,"value":1698},"ルールの数",{"type":15,"tag":1417,"props":1700,"children":1702},{"id":1701},"filtercondition",[1703],{"type":20,"value":1704},"FilterCondition",{"type":15,"tag":1423,"props":1706,"children":1707},{},[1708,1732],{"type":15,"tag":1427,"props":1709,"children":1710},{},[1711],{"type":15,"tag":1431,"props":1712,"children":1713},{},[1714,1719,1723,1728],{"type":15,"tag":1435,"props":1715,"children":1716},{},[1717],{"type":20,"value":1718},"コンストラクタパラメータ",{"type":15,"tag":1435,"props":1720,"children":1721},{},[1722],{"type":20,"value":1444},{"type":15,"tag":1435,"props":1724,"children":1725},{},[1726],{"type":20,"value":1727},"デフォルト",{"type":15,"tag":1435,"props":1729,"children":1730},{},[1731],{"type":20,"value":1449},{"type":15,"tag":1451,"props":1733,"children":1734},{},[1735,1766,1795,1825,1860],{"type":15,"tag":1431,"props":1736,"children":1737},{},[1738,1747,1756,1761],{"type":15,"tag":1458,"props":1739,"children":1740},{},[1741],{"type":15,"tag":26,"props":1742,"children":1744},{"className":1743},[],[1745],{"type":20,"value":1746},"columnId",{"type":15,"tag":1458,"props":1748,"children":1749},{},[1750],{"type":15,"tag":26,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":20,"value":1755},"string",{"type":15,"tag":1458,"props":1757,"children":1758},{},[1759],{"type":20,"value":1760},"必須",{"type":15,"tag":1458,"props":1762,"children":1763},{},[1764],{"type":20,"value":1765},"データソースの列ID",{"type":15,"tag":1431,"props":1767,"children":1768},{},[1769,1778,1786,1790],{"type":15,"tag":1458,"props":1770,"children":1771},{},[1772],{"type":15,"tag":26,"props":1773,"children":1775},{"className":1774},[],[1776],{"type":20,"value":1777},"op",{"type":15,"tag":1458,"props":1779,"children":1780},{},[1781],{"type":15,"tag":26,"props":1782,"children":1784},{"className":1783},[],[1785],{"type":20,"value":730},{"type":15,"tag":1458,"props":1787,"children":1788},{},[1789],{"type":20,"value":1760},{"type":15,"tag":1458,"props":1791,"children":1792},{},[1793],{"type":20,"value":1794},"比較演算子",{"type":15,"tag":1431,"props":1796,"children":1797},{},[1798,1807,1816,1820],{"type":15,"tag":1458,"props":1799,"children":1800},{},[1801],{"type":15,"tag":26,"props":1802,"children":1804},{"className":1803},[],[1805],{"type":20,"value":1806},"value",{"type":15,"tag":1458,"props":1808,"children":1809},{},[1810],{"type":15,"tag":26,"props":1811,"children":1813},{"className":1812},[],[1814],{"type":20,"value":1815},"object",{"type":15,"tag":1458,"props":1817,"children":1818},{},[1819],{"type":20,"value":1760},{"type":15,"tag":1458,"props":1821,"children":1822},{},[1823],{"type":20,"value":1824},"比較する値",{"type":15,"tag":1431,"props":1826,"children":1827},{},[1828,1837,1846,1855],{"type":15,"tag":1458,"props":1829,"children":1830},{},[1831],{"type":15,"tag":26,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":20,"value":1836},"comparisonDataKind",{"type":15,"tag":1458,"props":1838,"children":1839},{},[1840],{"type":15,"tag":26,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":20,"value":1845},"CellDataKind",{"type":15,"tag":1458,"props":1847,"children":1848},{},[1849],{"type":15,"tag":26,"props":1850,"children":1852},{"className":1851},[],[1853],{"type":20,"value":1854},"Value",{"type":15,"tag":1458,"props":1856,"children":1857},{},[1858],{"type":20,"value":1859},"生の値または表示テキストを比較",{"type":15,"tag":1431,"props":1861,"children":1862},{},[1863,1872,1880,1888],{"type":15,"tag":1458,"props":1864,"children":1865},{},[1866],{"type":15,"tag":26,"props":1867,"children":1869},{"className":1868},[],[1870],{"type":20,"value":1871},"comparisonType",{"type":15,"tag":1458,"props":1873,"children":1874},{},[1875],{"type":15,"tag":26,"props":1876,"children":1878},{"className":1877},[],[1879],{"type":20,"value":859},{"type":15,"tag":1458,"props":1881,"children":1882},{},[1883],{"type":15,"tag":26,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":20,"value":867},{"type":15,"tag":1458,"props":1889,"children":1890},{},[1891],{"type":20,"value":1892},"値の解析方法",{"type":15,"tag":1423,"props":1894,"children":1895},{},[1896,1915],{"type":15,"tag":1427,"props":1897,"children":1898},{},[1899],{"type":15,"tag":1431,"props":1900,"children":1901},{},[1902,1907,1911],{"type":15,"tag":1435,"props":1903,"children":1904},{},[1905],{"type":20,"value":1906},"プロパティ",{"type":15,"tag":1435,"props":1908,"children":1909},{},[1910],{"type":20,"value":1444},{"type":15,"tag":1435,"props":1912,"children":1913},{},[1914],{"type":20,"value":1449},{"type":15,"tag":1451,"props":1916,"children":1917},{},[1918,1942,1966,1990,2014],{"type":15,"tag":1431,"props":1919,"children":1920},{},[1921,1929,1937],{"type":15,"tag":1458,"props":1922,"children":1923},{},[1924],{"type":15,"tag":26,"props":1925,"children":1927},{"className":1926},[],[1928],{"type":20,"value":827},{"type":15,"tag":1458,"props":1930,"children":1931},{},[1932],{"type":15,"tag":26,"props":1933,"children":1935},{"className":1934},[],[1936],{"type":20,"value":1755},{"type":15,"tag":1458,"props":1938,"children":1939},{},[1940],{"type":20,"value":1941},"列識別子",{"type":15,"tag":1431,"props":1943,"children":1944},{},[1945,1954,1962],{"type":15,"tag":1458,"props":1946,"children":1947},{},[1948],{"type":15,"tag":26,"props":1949,"children":1951},{"className":1950},[],[1952],{"type":20,"value":1953},"Operator",{"type":15,"tag":1458,"props":1955,"children":1956},{},[1957],{"type":15,"tag":26,"props":1958,"children":1960},{"className":1959},[],[1961],{"type":20,"value":730},{"type":15,"tag":1458,"props":1963,"children":1964},{},[1965],{"type":20,"value":1794},{"type":15,"tag":1431,"props":1967,"children":1968},{},[1969,1977,1985],{"type":15,"tag":1458,"props":1970,"children":1971},{},[1972],{"type":15,"tag":26,"props":1973,"children":1975},{"className":1974},[],[1976],{"type":20,"value":1854},{"type":15,"tag":1458,"props":1978,"children":1979},{},[1980],{"type":15,"tag":26,"props":1981,"children":1983},{"className":1982},[],[1984],{"type":20,"value":1815},{"type":15,"tag":1458,"props":1986,"children":1987},{},[1988],{"type":20,"value":1989},"比較値",{"type":15,"tag":1431,"props":1991,"children":1992},{},[1993,2001,2009],{"type":15,"tag":1458,"props":1994,"children":1995},{},[1996],{"type":15,"tag":26,"props":1997,"children":1999},{"className":1998},[],[2000],{"type":20,"value":1385},{"type":15,"tag":1458,"props":2002,"children":2003},{},[2004],{"type":15,"tag":26,"props":2005,"children":2007},{"className":2006},[],[2008],{"type":20,"value":1501},{"type":15,"tag":1458,"props":2010,"children":2011},{},[2012],{"type":20,"value":2013},"このルールが有効かどうか",{"type":15,"tag":1431,"props":2015,"children":2016},{},[2017,2025,2033],{"type":15,"tag":1458,"props":2018,"children":2019},{},[2020],{"type":15,"tag":26,"props":2021,"children":2023},{"className":2022},[],[2024],{"type":20,"value":1022},{"type":15,"tag":1458,"props":2026,"children":2027},{},[2028],{"type":15,"tag":26,"props":2029,"children":2031},{"className":2030},[],[2032],{"type":20,"value":1845},{"type":15,"tag":1458,"props":2034,"children":2035},{},[2036],{"type":20,"value":2037},"生の値または表示テキストに対して比較",{"type":15,"tag":1417,"props":2039,"children":2041},{"id":2040},"conditionoperator列挙型",[2042],{"type":20,"value":2043},"ConditionOperator列挙型",{"type":15,"tag":1423,"props":2045,"children":2046},{},[2047,2067],{"type":15,"tag":1427,"props":2048,"children":2049},{},[2050],{"type":15,"tag":1431,"props":2051,"children":2052},{},[2053,2058,2063],{"type":15,"tag":1435,"props":2054,"children":2055},{},[2056],{"type":20,"value":2057},"値",{"type":15,"tag":1435,"props":2059,"children":2060},{},[2061],{"type":20,"value":2062},"記号",{"type":15,"tag":1435,"props":2064,"children":2065},{},[2066],{"type":20,"value":1449},{"type":15,"tag":1451,"props":2068,"children":2069},{},[2070,2095,2120,2145,2170,2195,2220,2245,2270,2295,2320],{"type":15,"tag":1431,"props":2071,"children":2072},{},[2073,2081,2090],{"type":15,"tag":1458,"props":2074,"children":2075},{},[2076],{"type":15,"tag":26,"props":2077,"children":2079},{"className":2078},[],[2080],{"type":20,"value":738},{"type":15,"tag":1458,"props":2082,"children":2083},{},[2084],{"type":15,"tag":26,"props":2085,"children":2087},{"className":2086},[],[2088],{"type":20,"value":2089},"==",{"type":15,"tag":1458,"props":2091,"children":2092},{},[2093],{"type":20,"value":2094},"等しい",{"type":15,"tag":1431,"props":2096,"children":2097},{},[2098,2106,2115],{"type":15,"tag":1458,"props":2099,"children":2100},{},[2101],{"type":15,"tag":26,"props":2102,"children":2104},{"className":2103},[],[2105],{"type":20,"value":746},{"type":15,"tag":1458,"props":2107,"children":2108},{},[2109],{"type":15,"tag":26,"props":2110,"children":2112},{"className":2111},[],[2113],{"type":20,"value":2114},"!=",{"type":15,"tag":1458,"props":2116,"children":2117},{},[2118],{"type":20,"value":2119},"等しくない",{"type":15,"tag":1431,"props":2121,"children":2122},{},[2123,2131,2140],{"type":15,"tag":1458,"props":2124,"children":2125},{},[2126],{"type":15,"tag":26,"props":2127,"children":2129},{"className":2128},[],[2130],{"type":20,"value":753},{"type":15,"tag":1458,"props":2132,"children":2133},{},[2134],{"type":15,"tag":26,"props":2135,"children":2137},{"className":2136},[],[2138],{"type":20,"value":2139},"~*",{"type":15,"tag":1458,"props":2141,"children":2142},{},[2143],{"type":20,"value":2144},"で始まる",{"type":15,"tag":1431,"props":2146,"children":2147},{},[2148,2156,2165],{"type":15,"tag":1458,"props":2149,"children":2150},{},[2151],{"type":15,"tag":26,"props":2152,"children":2154},{"className":2153},[],[2155],{"type":20,"value":760},{"type":15,"tag":1458,"props":2157,"children":2158},{},[2159],{"type":15,"tag":26,"props":2160,"children":2162},{"className":2161},[],[2163],{"type":20,"value":2164},"*~",{"type":15,"tag":1458,"props":2166,"children":2167},{},[2168],{"type":20,"value":2169},"で終わる",{"type":15,"tag":1431,"props":2171,"children":2172},{},[2173,2181,2190],{"type":15,"tag":1458,"props":2174,"children":2175},{},[2176],{"type":15,"tag":26,"props":2177,"children":2179},{"className":2178},[],[2180],{"type":20,"value":767},{"type":15,"tag":1458,"props":2182,"children":2183},{},[2184],{"type":15,"tag":26,"props":2185,"children":2187},{"className":2186},[],[2188],{"type":20,"value":2189},"~",{"type":15,"tag":1458,"props":2191,"children":2192},{},[2193],{"type":20,"value":2194},"を含む",{"type":15,"tag":1431,"props":2196,"children":2197},{},[2198,2206,2215],{"type":15,"tag":1458,"props":2199,"children":2200},{},[2201],{"type":15,"tag":26,"props":2202,"children":2204},{"className":2203},[],[2205],{"type":20,"value":774},{"type":15,"tag":1458,"props":2207,"children":2208},{},[2209],{"type":15,"tag":26,"props":2210,"children":2212},{"className":2211},[],[2213],{"type":20,"value":2214},"!~",{"type":15,"tag":1458,"props":2216,"children":2217},{},[2218],{"type":20,"value":2219},"を含まない",{"type":15,"tag":1431,"props":2221,"children":2222},{},[2223,2231,2240],{"type":15,"tag":1458,"props":2224,"children":2225},{},[2226],{"type":15,"tag":26,"props":2227,"children":2229},{"className":2228},[],[2230],{"type":20,"value":781},{"type":15,"tag":1458,"props":2232,"children":2233},{},[2234],{"type":15,"tag":26,"props":2235,"children":2237},{"className":2236},[],[2238],{"type":20,"value":2239},">",{"type":15,"tag":1458,"props":2241,"children":2242},{},[2243],{"type":20,"value":2244},"より大きい",{"type":15,"tag":1431,"props":2246,"children":2247},{},[2248,2256,2265],{"type":15,"tag":1458,"props":2249,"children":2250},{},[2251],{"type":15,"tag":26,"props":2252,"children":2254},{"className":2253},[],[2255],{"type":20,"value":788},{"type":15,"tag":1458,"props":2257,"children":2258},{},[2259],{"type":15,"tag":26,"props":2260,"children":2262},{"className":2261},[],[2263],{"type":20,"value":2264},">=",{"type":15,"tag":1458,"props":2266,"children":2267},{},[2268],{"type":20,"value":2269},"以上",{"type":15,"tag":1431,"props":2271,"children":2272},{},[2273,2281,2290],{"type":15,"tag":1458,"props":2274,"children":2275},{},[2276],{"type":15,"tag":26,"props":2277,"children":2279},{"className":2278},[],[2280],{"type":20,"value":795},{"type":15,"tag":1458,"props":2282,"children":2283},{},[2284],{"type":15,"tag":26,"props":2285,"children":2287},{"className":2286},[],[2288],{"type":20,"value":2289},"\u003C",{"type":15,"tag":1458,"props":2291,"children":2292},{},[2293],{"type":20,"value":2294},"より小さい",{"type":15,"tag":1431,"props":2296,"children":2297},{},[2298,2306,2315],{"type":15,"tag":1458,"props":2299,"children":2300},{},[2301],{"type":15,"tag":26,"props":2302,"children":2304},{"className":2303},[],[2305],{"type":20,"value":802},{"type":15,"tag":1458,"props":2307,"children":2308},{},[2309],{"type":15,"tag":26,"props":2310,"children":2312},{"className":2311},[],[2313],{"type":20,"value":2314},"\u003C=",{"type":15,"tag":1458,"props":2316,"children":2317},{},[2318],{"type":20,"value":2319},"以下",{"type":15,"tag":1431,"props":2321,"children":2322},{},[2323,2331,2340],{"type":15,"tag":1458,"props":2324,"children":2325},{},[2326],{"type":15,"tag":26,"props":2327,"children":2329},{"className":2328},[],[2330],{"type":20,"value":809},{"type":15,"tag":1458,"props":2332,"children":2333},{},[2334],{"type":15,"tag":26,"props":2335,"children":2337},{"className":2336},[],[2338],{"type":20,"value":2339},"IN",{"type":15,"tag":1458,"props":2341,"children":2342},{},[2343],{"type":20,"value":2344},"コレクションに含まれる",{"type":15,"tag":1417,"props":2346,"children":2348},{"id":2347},"comparisontype列挙型",[2349],{"type":20,"value":2350},"ComparisonType列挙型",{"type":15,"tag":1423,"props":2352,"children":2353},{},[2354,2368],{"type":15,"tag":1427,"props":2355,"children":2356},{},[2357],{"type":15,"tag":1431,"props":2358,"children":2359},{},[2360,2364],{"type":15,"tag":1435,"props":2361,"children":2362},{},[2363],{"type":20,"value":2057},{"type":15,"tag":1435,"props":2365,"children":2366},{},[2367],{"type":20,"value":1449},{"type":15,"tag":1451,"props":2369,"children":2370},{},[2371,2387,2404,2421],{"type":15,"tag":1431,"props":2372,"children":2373},{},[2374,2382],{"type":15,"tag":1458,"props":2375,"children":2376},{},[2377],{"type":15,"tag":26,"props":2378,"children":2380},{"className":2379},[],[2381],{"type":20,"value":867},{"type":15,"tag":1458,"props":2383,"children":2384},{},[2385],{"type":20,"value":2386},"自動的に型を検出（数値 → 日時 → テキスト）",{"type":15,"tag":1431,"props":2388,"children":2389},{},[2390,2399],{"type":15,"tag":1458,"props":2391,"children":2392},{},[2393],{"type":15,"tag":26,"props":2394,"children":2396},{"className":2395},[],[2397],{"type":20,"value":2398},"Numeric",{"type":15,"tag":1458,"props":2400,"children":2401},{},[2402],{"type":20,"value":2403},"数値比較を強制",{"type":15,"tag":1431,"props":2405,"children":2406},{},[2407,2416],{"type":15,"tag":1458,"props":2408,"children":2409},{},[2410],{"type":15,"tag":26,"props":2411,"children":2413},{"className":2412},[],[2414],{"type":20,"value":2415},"Text",{"type":15,"tag":1458,"props":2417,"children":2418},{},[2419],{"type":20,"value":2420},"テキスト比較を強制",{"type":15,"tag":1431,"props":2422,"children":2423},{},[2424,2432],{"type":15,"tag":1458,"props":2425,"children":2426},{},[2427],{"type":15,"tag":26,"props":2428,"children":2430},{"className":2429},[],[2431],{"type":20,"value":912},{"type":15,"tag":1458,"props":2433,"children":2434},{},[2435],{"type":20,"value":2436},"日時比較を強制",{"type":15,"tag":1417,"props":2438,"children":2440},{"id":2439},"celldatakind列挙型",[2441],{"type":20,"value":2442},"CellDataKind列挙型",{"type":15,"tag":1423,"props":2444,"children":2445},{},[2446,2460],{"type":15,"tag":1427,"props":2447,"children":2448},{},[2449],{"type":15,"tag":1431,"props":2450,"children":2451},{},[2452,2456],{"type":15,"tag":1435,"props":2453,"children":2454},{},[2455],{"type":20,"value":2057},{"type":15,"tag":1435,"props":2457,"children":2458},{},[2459],{"type":20,"value":1449},{"type":15,"tag":1451,"props":2461,"children":2462},{},[2463,2479],{"type":15,"tag":1431,"props":2464,"children":2465},{},[2466,2474],{"type":15,"tag":1458,"props":2467,"children":2468},{},[2469],{"type":15,"tag":26,"props":2470,"children":2472},{"className":2471},[],[2473],{"type":20,"value":1854},{"type":15,"tag":1458,"props":2475,"children":2476},{},[2477],{"type":20,"value":2478},"生のセル値に対して比較",{"type":15,"tag":1431,"props":2480,"children":2481},{},[2482,2490],{"type":15,"tag":1458,"props":2483,"children":2484},{},[2485],{"type":15,"tag":26,"props":2486,"children":2488},{"className":2487},[],[2489],{"type":20,"value":1046},{"type":15,"tag":1458,"props":2491,"children":2492},{},[2493],{"type":20,"value":2494},"書式設定された表示テキストに対して比較",{"type":15,"tag":1417,"props":2496,"children":2498},{"id":2497},"datetimevalidpart列挙型",[2499],{"type":20,"value":2500},"DateTimeValidPart列挙型",{"type":15,"tag":22,"props":2502,"children":2503},{},[2504],{"type":20,"value":2505},"日付比較の粒度を制御します（値の形式から自動的に推論されます）：",{"type":15,"tag":1423,"props":2507,"children":2508},{},[2509,2523],{"type":15,"tag":1427,"props":2510,"children":2511},{},[2512],{"type":15,"tag":1431,"props":2513,"children":2514},{},[2515,2519],{"type":15,"tag":1435,"props":2516,"children":2517},{},[2518],{"type":20,"value":2057},{"type":15,"tag":1435,"props":2520,"children":2521},{},[2522],{"type":20,"value":1449},{"type":15,"tag":1451,"props":2524,"children":2525},{},[2526,2543,2559,2575,2591,2608,2624,2640],{"type":15,"tag":1431,"props":2527,"children":2528},{},[2529,2538],{"type":15,"tag":1458,"props":2530,"children":2531},{},[2532],{"type":15,"tag":26,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":20,"value":2537},"YYYYMMDD_HHMMSS",{"type":15,"tag":1458,"props":2539,"children":2540},{},[2541],{"type":20,"value":2542},"完全な日付と時刻",{"type":15,"tag":1431,"props":2544,"children":2545},{},[2546,2554],{"type":15,"tag":1458,"props":2547,"children":2548},{},[2549],{"type":15,"tag":26,"props":2550,"children":2552},{"className":2551},[],[2553],{"type":20,"value":977},{"type":15,"tag":1458,"props":2555,"children":2556},{},[2557],{"type":20,"value":2558},"年のみ",{"type":15,"tag":1431,"props":2560,"children":2561},{},[2562,2570],{"type":15,"tag":1458,"props":2563,"children":2564},{},[2565],{"type":15,"tag":26,"props":2566,"children":2568},{"className":2567},[],[2569],{"type":20,"value":984},{"type":15,"tag":1458,"props":2571,"children":2572},{},[2573],{"type":20,"value":2574},"年と月",{"type":15,"tag":1431,"props":2576,"children":2577},{},[2578,2586],{"type":15,"tag":1458,"props":2579,"children":2580},{},[2581],{"type":15,"tag":26,"props":2582,"children":2584},{"className":2583},[],[2585],{"type":20,"value":991},{"type":15,"tag":1458,"props":2587,"children":2588},{},[2589],{"type":20,"value":2590},"年、月、日",{"type":15,"tag":1431,"props":2592,"children":2593},{},[2594,2603],{"type":15,"tag":1458,"props":2595,"children":2596},{},[2597],{"type":15,"tag":26,"props":2598,"children":2600},{"className":2599},[],[2601],{"type":20,"value":2602},"HH",{"type":15,"tag":1458,"props":2604,"children":2605},{},[2606],{"type":20,"value":2607},"時のみ",{"type":15,"tag":1431,"props":2609,"children":2610},{},[2611,2619],{"type":15,"tag":1458,"props":2612,"children":2613},{},[2614],{"type":15,"tag":26,"props":2615,"children":2617},{"className":2616},[],[2618],{"type":20,"value":998},{"type":15,"tag":1458,"props":2620,"children":2621},{},[2622],{"type":20,"value":2623},"時と分",{"type":15,"tag":1431,"props":2625,"children":2626},{},[2627,2635],{"type":15,"tag":1458,"props":2628,"children":2629},{},[2630],{"type":15,"tag":26,"props":2631,"children":2633},{"className":2632},[],[2634],{"type":20,"value":1005},{"type":15,"tag":1458,"props":2636,"children":2637},{},[2638],{"type":20,"value":2639},"時、分、秒",{"type":15,"tag":1431,"props":2641,"children":2642},{},[2643,2652],{"type":15,"tag":1458,"props":2644,"children":2645},{},[2646],{"type":15,"tag":26,"props":2647,"children":2649},{"className":2648},[],[2650],{"type":20,"value":2651},"YYYYMMDD_HHMM",{"type":15,"tag":1458,"props":2653,"children":2654},{},[2655],{"type":20,"value":2656},"日付と時刻（秒なし）",{"type":15,"tag":43,"props":2658,"children":2660},{"id":2659},"関連トピック",[2661],{"type":20,"value":2659},{"type":15,"tag":49,"props":2663,"children":2664},{},[2665,2677],{"type":15,"tag":53,"props":2666,"children":2667},{},[2668,2675],{"type":15,"tag":2669,"props":2670,"children":2672},"a",{"href":2671},"/document/data/data-filtering/",[2673],{"type":20,"value":2674},"データフィルタリング",{"type":20,"value":2676}," — 概要とカスタムフィルター",{"type":15,"tag":53,"props":2678,"children":2679},{},[2680,2686],{"type":15,"tag":2669,"props":2681,"children":2683},{"href":2682},"/document/data/builtin-autofilter/",[2684],{"type":20,"value":2685},"組み込みオートフィルター",{"type":20,"value":2687}," — Excelスタイルの列フィルターUI",{"type":15,"tag":2689,"props":2690,"children":2691},"style",{},[2692],{"type":20,"value":2693},"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":207,"depth":207,"links":2695},[2696,2697,2698,2699,2700,2709],{"id":45,"depth":207,"text":45},{"id":139,"depth":207,"text":139},{"id":709,"depth":207,"text":709},{"id":1102,"depth":207,"text":1102},{"id":1412,"depth":207,"text":1415,"children":2701},[2702,2703,2704,2705,2706,2707,2708],{"id":1419,"depth":240,"text":31},{"id":1573,"depth":240,"text":1475},{"id":1701,"depth":240,"text":1704},{"id":2040,"depth":240,"text":2043},{"id":2347,"depth":240,"text":2350},{"id":2439,"depth":240,"text":2442},{"id":2497,"depth":240,"text":2500},{"id":2659,"depth":207,"text":2659},"markdown","content:document:5.data:5.conditional-filter.md","content","document/5.data/5.conditional-filter.md","document/5.data/5.conditional-filter","md",{"loc":4},[2718,3039,3042,3045,3048,3051,3054,3057,3060],{"title":2719,"_path":2720,"children":2721},"Document","/document",[2722,2733,2738,2770,2787,2812,2844,2864,2878,2901,2912,2928,2951,2962,2982,3002,3031],{"title":2723,"_path":2724,"children":2725},"はじめに","/document/getting-started",[2726,2727,2730],{"title":2723,"_path":2724},{"title":2728,"_path":2729},"インストール","/document/getting-started/installation",{"title":2731,"_path":2732},"V3 から V4 への移行ガイド","/document/getting-started/migrate-from-v3",{"title":2734,"_path":2735,"children":2736},"ワークブック","/document/workbook",[2737],{"title":2734,"_path":2735},{"title":2739,"_path":2740,"children":2741},"ワークシート","/document/worksheet",[2742,2743,2746,2749,2752,2755,2758,2761,2764,2767],{"title":2739,"_path":2740},{"title":2744,"_path":2745},"行、列、ヘッダー","/document/worksheet/row-and-column",{"title":2747,"_path":2748},"範囲","/document/worksheet/range",{"title":2750,"_path":2751},"名前付き範囲","/document/worksheet/named-range",{"title":2753,"_path":2754},"セルの結合と解除","/document/worksheet/merge-and-unmerge",{"title":2756,"_path":2757},"パーシャルグリッド","/document/worksheet/partial-grid",{"title":2759,"_path":2760},"複数行ヘッダー","/document/worksheet/multiple-row-header",{"title":2762,"_path":2763},"ウィンドウ枠の固定","/document/worksheet/freeze",{"title":2765,"_path":2766},"ズーム","/document/worksheet/zoom",{"title":2768,"_path":2769},"設定とオプション","/document/worksheet/settings",{"title":2771,"_path":2772,"children":2773},"選択とナビゲーション","/document/selection",[2774,2775,2778,2781,2784],{"title":2771,"_path":2772},{"title":2776,"_path":2777},"フォーカスと選択","/document/selection/selection",{"title":2779,"_path":2780},"範囲の選択","/document/selection/pick-range",{"title":2782,"_path":2783},"クリップボード","/document/selection/clipboard",{"title":2785,"_path":2786},"テキスト検索","/document/selection/text-search",{"title":2788,"_path":2789,"children":2790},"データ管理","/document/data",[2791,2792,2795,2797,2799,2800,2803,2806,2809],{"title":2788,"_path":2789},{"title":2793,"_path":2794},"データソース","/document/data/datasource",{"title":2674,"_path":2796},"/document/data/data-filtering",{"title":2685,"_path":2798},"/document/data/builtin-autofilter",{"title":8,"_path":4},{"title":2801,"_path":2802},"条件付きスタイル","/document/data/conditional-styles",{"title":2804,"_path":2805},"グループとアウトライン","/document/data/group-and-outline",{"title":2807,"_path":2808},"データバリデーション","/document/data/data-validation",{"title":2810,"_path":2811},"保護とロック","/document/data/protection",{"title":2813,"_path":2814,"children":2815},"セル","/document/cell",[2816,2817,2820,2823,2826,2829,2832,2835,2838,2841],{"title":2813,"_path":2814},{"title":2818,"_path":2819},"セルの編集","/document/cell/cell-edit",{"title":2821,"_path":2822},"スタイル","/document/cell/style",{"title":2824,"_path":2825},"罫線","/document/cell/border",{"title":2827,"_path":2828},"データ書式","/document/cell/data-format",{"title":2830,"_path":2831},"カスタムデータフォーマッター","/document/cell/custom-data-formatter",{"title":2833,"_path":2834},"データ連続入力","/document/cell/auto-fill",{"title":2836,"_path":2837},"リッチフォーマットテキスト","/document/cell/rich-format-text",{"title":2839,"_path":2840},"セルテキストの回転","/document/cell/rotate-cell-text",{"title":2842,"_path":2843},"セルの反復処理","/document/cell/iterate-cells",{"title":2845,"_path":2846,"children":2847},"セルタイプ","/document/cell-types",[2848,2849,2852,2855,2858,2861],{"title":2845,"_path":2846},{"title":2850,"_path":2851},"組み込みセルタイプ","/document/cell-types/built-in-cell-types",{"title":2853,"_path":2854},"カスタムセル","/document/cell-types/custom-cell",{"title":2856,"_path":2857},"ドロップダウンリストセル","/document/cell-types/dropdown-list-cell",{"title":2859,"_path":2860},"コンボリストセル","/document/cell-types/combo-list-cell",{"title":2862,"_path":2863},"列全体のセルタイプ","/document/cell-types/cells-type-for-entire-column",{"title":2865,"_path":2866,"children":2867},"数式","/document/formula",[2868,2869,2872,2875],{"title":2865,"_path":2866},{"title":2870,"_path":2871},"カスタム関数","/document/formula/custom-function",{"title":2873,"_path":2874},"数式関数","/document/formula/formula-functions",{"title":2876,"_path":2877},"VLOOKUP","/document/formula/vlookup",{"title":2879,"_path":2880,"children":2881},"チャート","/document/chart",[2882,2883,2886,2889,2892,2895,2898],{"title":2879,"_path":2880},{"title":2884,"_path":2885},"縦棒グラフ","/document/chart/column-chart",{"title":2887,"_path":2888},"横棒グラフ","/document/chart/bar-chart",{"title":2890,"_path":2891},"折れ線グラフ","/document/chart/line-chart",{"title":2893,"_path":2894},"面グラフ","/document/chart/area-chart",{"title":2896,"_path":2897},"2D円グラフ","/document/chart/pie-2d-chart",{"title":2899,"_path":2900},"ドーナツグラフ","/document/chart/doughnut-chart",{"title":2902,"_path":2903,"children":2904},"フローティングオブジェクト","/document/floating",[2905,2906,2909],{"title":2902,"_path":2903},{"title":2907,"_path":2908},"描画シェイプ","/document/floating/drawing-shapes",{"title":2910,"_path":2911},"フローティング画像","/document/floating/floating-image",{"title":2913,"_path":2914,"children":2915},"イベント","/document/events",[2916,2917,2919,2922,2925],{"title":2913,"_path":2914},{"title":2913,"_path":2918},"/document/events/events",{"title":2920,"_path":2921},"キーボードイベント","/document/events/keyboard-events",{"title":2923,"_path":2924},"マウスイベント","/document/events/mouse-events",{"title":2926,"_path":2927},"SelectionRangeChanged","/document/events/selection-events",{"title":2929,"_path":2930,"children":2931},"カスタマイズ","/document/customization",[2932,2933,2936,2939,2942,2945,2948],{"title":2929,"_path":2930},{"title":2934,"_path":2935},"コントロールの外観","/document/customization/control-appearance",{"title":2937,"_path":2938},"シートタブコントロール","/document/customization/sheet-tab-control",{"title":2940,"_path":2941},"使用可能なホットキー","/document/customization/hot-keys",{"title":2943,"_path":2944},"言語ローカライズ","/document/customization/language-localization",{"title":2946,"_path":2947},"アドレスバーと数式バー","/document/customization/formula-bar",{"title":2949,"_path":2950},"ReoGridEditor","/document/customization/editor",{"title":2952,"_path":2953,"children":2954},"アクション","/document/actions",[2955,2956,2959],{"title":2952,"_path":2953},{"title":2957,"_path":2958},"ReoGridアクションフレームワーク","/document/actions/actions",{"title":2960,"_path":2961},"組み込みワークシートアクション","/document/actions/built-in-actions",{"title":2963,"_path":2964,"children":2965},"ファイル形式","/document/io",[2966,2967,2970,2973,2976,2979],{"title":2963,"_path":2964},{"title":2968,"_path":2969},"Excelファイル形式 (xlsx)","/document/io/excel-file-format",{"title":2971,"_path":2972},"CSV形式","/document/io/csv-format",{"title":2974,"_path":2975},"RGF形式","/document/io/rgf-format",{"title":2977,"_path":2978},"Excel形式とRGF形式の違い","/document/io/difference-between-excel-and-rgf-format",{"title":2980,"_path":2981},"HTMLとしてエクスポート","/document/io/export-as-html",{"title":2983,"_path":2984,"children":2985},"高度な機能","/document/advanced",[2986,2987,2990,2993,2996,2999],{"title":2983,"_path":2984},{"title":2988,"_path":2989},"メモリワークブック","/document/advanced/memory-workbook",{"title":2991,"_path":2992},"ページングと印刷","/document/advanced/paging-and-print",{"title":2994,"_path":2995},"コントロールのリセット","/document/advanced/reset-control",{"title":2997,"_path":2998},"パフォーマンス","/document/advanced/performance",{"title":3000,"_path":3001},"設定","/document/advanced/settings",{"title":3003,"_path":3004,"children":3005},"ハウツーガイド","/document/how-to",[3006,3007,3010,3013,3016,3019,3022,3025,3028],{"title":3003,"_path":3004},{"title":3008,"_path":3009},"ReoGridの推奨プラクティス","/document/how-to/recommended-practice-for-using-reogrid",{"title":3011,"_path":3012},"DataTableでスプレッドシートを埋める","/document/how-to/fill-grid-with-datatable",{"title":3014,"_path":3015},"遅延読み込みモードによる大量データの高速読み込み","/document/how-to/fast-load-large-data-with-lazy-load-mode",{"title":3017,"_path":3018},"カスタムドロップダウンセルの作成","/document/how-to/create-custom-drop-down-cell",{"title":3020,"_path":3021},"日付ピッカーセルの作成","/document/how-to/create-date-picker-cell",{"title":3023,"_path":3024},"Excelファイルからすべての画像を読み取る","/document/how-to/read-all-images-from-excel-file",{"title":3026,"_path":3027},"VB.NETでReoGridを使用するためのヒント","/document/how-to/use-reogrid-in-vb-net",{"title":3029,"_path":3030},"全選択チェックボックスヘッダーの作成","/document/how-to/create-select-all-checkbox-header",{"title":3032,"_path":3033,"children":3034},"トラブルシューティング","/document/troubleshooting",[3035,3036],{"title":3032,"_path":3033},{"title":3037,"_path":3038},"PInvoke例外の修正","/document/troubleshooting/fix-pinvoke-exception",{"title":3040,"_path":3041},"エディション・機能一覧","/editions-features",{"title":3043,"_path":3044},"個人情報保護方針","/privacy-policy",{"title":3046,"_path":3047},"動作環境","/requirements",{"title":3049,"_path":3050},"ReoGrid利用許諾契約書","/terms",{"title":3052,"_path":3053},"ReoGrid利用許諾契約書(Ver.3)","/terms-v3",{"title":3055,"_path":3056},"ReoGrid利用許諾契約書(Ver.4)","/terms-v4",{"title":3058,"_path":3059},"ReoGrid 4 トライアルライセンスポリシー","/terms-v4-trial",{"title":3061,"_path":3062},"ReoGrid Web Edition 利用許諾契約書","/terms-web",1786025053690]