OneNote.ribbon.baseline 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438
  1. OneNoteRibbonData
  2. name: CommandUI
  3. attrs
  4. xmlns: http://schemas.microsoft.com/sharepoint/
  5. children
  6. 0
  7. name: QAT
  8. attrs
  9. Id: qatOneNote
  10. children
  11. 0
  12. name: Controls
  13. attrs
  14. Id: ctrlQAT
  15. children
  16. 0
  17. name: Button
  18. attrs
  19. Id: qatUndo
  20. Command: 0xA66C4568
  21. Image16by16: IMGMAP@one@UndoPS
  22. LabelText: STR@L_Undo
  23. 1
  24. name: Button
  25. attrs
  26. Id: qatRedo
  27. Command: 0xF957BFBE
  28. Image16by16: IMGMAP@one@RedoPS
  29. LabelText: STR@L_Redo
  30. 1
  31. name: Jewel
  32. attrs
  33. Alt: STR@L_DocumentMenu
  34. Id: jewelOneNote
  35. CommandMenuOpen: 0x215688C3
  36. CommandMenuClose: 0xB15EF301
  37. Image: IMGMAP@one@OfficeButton_OneNote_Normal
  38. ImageDown: IMGMAP@one@OfficeButton_OneNote_Pressed
  39. ImageHover: IMGMAP@one@OfficeButton_OneNote_Hover
  40. children
  41. 0
  42. name: Menu
  43. attrs
  44. Id: menuJewel
  45. children
  46. 0
  47. name: MenuSection
  48. attrs
  49. Id: msJewel
  50. DisplayMode: Menu32
  51. children
  52. 0
  53. name: Controls
  54. attrs
  55. Id: ctrlJewels
  56. children
  57. 0
  58. name: Button
  59. attrs
  60. Alt: STR@L_OpenInOneNote
  61. Id: btnjOpenInClient
  62. Command: 0xD5DF198A
  63. Image32by32: IMGMAP@one@EditInOneNotePH
  64. LabelText: STR@L_OpenInOneNote
  65. Description: STR@L_OpenInOneNoteDescription
  66. 1
  67. name: MenuSection
  68. attrs
  69. Id: msJewelClose
  70. DisplayMode: Menu32
  71. children
  72. 0
  73. name: Controls
  74. attrs
  75. Id: ctrlJewels2
  76. children
  77. 0
  78. name: Button
  79. attrs
  80. Alt: STR@L_Close
  81. Id: btnjClose
  82. Command: 0xB4CE0C4E
  83. Image32by32: IMGMAP@one@ClosePH
  84. LabelText: STR@L_Close
  85. Description: STR@L_CloseDescription
  86. 2
  87. name: Ribbon
  88. attrs
  89. Id: OneNote
  90. TeamId: WAC
  91. RootEventCommand: 0xA9CEBE8B
  92. Image32by32GroupPopupDefault: IMGMAP@NoIconYetPH
  93. TabSwitchCommand: 0xE2EB63FF
  94. TextDirection: ltr
  95. children
  96. 0
  97. name: Tabs
  98. attrs
  99. Id: tabs
  100. children
  101. 0
  102. name: Tab
  103. attrs
  104. Id: tabHome
  105. Description:
  106. Title: STR@L_TabHome
  107. children
  108. 0
  109. name: Scaling
  110. attrs
  111. children
  112. 0
  113. name: MaxSize
  114. attrs
  115. Id: grpClipboard.Scaling.MaxSize
  116. Sequence: 10
  117. GroupId: grpClipboard
  118. Size: LargeMedium
  119. 1
  120. name: MaxSize
  121. attrs
  122. Id: grpBasicText.Scaling.MaxSize
  123. Sequence: 20
  124. GroupId: grpBasicText
  125. Size: Large
  126. 2
  127. name: MaxSize
  128. attrs
  129. Id: grpStyles.Scaling.MaxSize
  130. Sequence: 30
  131. GroupId: grpStyles
  132. Size: 5style
  133. 3
  134. name: MaxSize
  135. attrs
  136. Id: grpNoteTags.Scaling.MaxSize
  137. Sequence: 40
  138. GroupId: grpNoteTags
  139. Size: Large
  140. 4
  141. name: MaxSize
  142. attrs
  143. Id: grpSpelling.Scaling.MaxSize
  144. Sequence: 50
  145. GroupId: grpSpelling
  146. Size: Large
  147. 5
  148. name: MaxSize
  149. attrs
  150. Id: grpFeedback.Scaling.MaxSize
  151. Sequence: 60
  152. GroupId: grpFeedback
  153. Size: Large
  154. 6
  155. name: Scale
  156. attrs
  157. Id: grpClipboard.Scaling.LargeSmall
  158. Sequence: 70
  159. GroupId: grpClipboard
  160. Size: LargeSmall
  161. 7
  162. name: Scale
  163. attrs
  164. Id: grpStyles.Scaling.4style
  165. Sequence: 80
  166. GroupId: grpStyles
  167. Size: 4style
  168. 8
  169. name: Scale
  170. attrs
  171. Id: grpStyles.Scaling.3style
  172. Sequence: 90
  173. GroupId: grpStyles
  174. Size: 3style
  175. 9
  176. name: Scale
  177. attrs
  178. Id: grpStyles.Scaling.MoreOnly
  179. Sequence: 100
  180. GroupId: grpStyles
  181. Size: MoreOnly
  182. 1
  183. name: Groups
  184. attrs
  185. children
  186. 0
  187. name: Group
  188. attrs
  189. Id: grpClipboard
  190. Description:
  191. Title: STR@L_GroupClipboard
  192. Template: tmpClipboard
  193. children
  194. 0
  195. name: Controls
  196. attrs
  197. id: ctrlClipboard
  198. children
  199. 0
  200. name: Button
  201. attrs
  202. Id: fseaPaste
  203. Command: 0x0E249AB3
  204. Image16by16: IMGMAP@one@PastePS
  205. Image32by32: IMGMAP@one@PastePH
  206. LabelText: STR@L_Paste
  207. TemplateAlias: paste
  208. 1
  209. name: Button
  210. attrs
  211. Id: fseaCopy
  212. Command: 0xC9ADDC35
  213. Image16by16: IMGMAP@one@CopyPS
  214. LabelText: STR@L_Copy
  215. TemplateAlias: copy
  216. 2
  217. name: Button
  218. attrs
  219. Id: fseaCut
  220. Command: 0x89A31DE2
  221. Image16by16: IMGMAP@one@CutPS
  222. LabelText: STR@L_Cut
  223. TemplateAlias: cut
  224. 1
  225. name: Group
  226. attrs
  227. Id: grpBasicText
  228. Description:
  229. Title: STR@L_GroupBasicText
  230. Template: tmpBasicText
  231. children
  232. 0
  233. name: Controls
  234. attrs
  235. children
  236. 0
  237. name: ComboBox
  238. attrs
  239. Alt: STR@L_FontName
  240. Id: fontName
  241. MenuAlt: STR@L_FontName
  242. Command: 0xCC7BD8E3
  243. CommandMenuOpen: 0x215688C3
  244. CommandMenuClose: 0xB15EF301
  245. QueryCommand: 0x48F327A5
  246. Width: 80px
  247. TemplateAlias: font
  248. ImageArrow: IMGMAP@one@SplitButtonArrow
  249. PopulateDynamically: true
  250. PopulateOnlyOnce: false
  251. PopulateQueryCommand: 0x0AB30E9C
  252. CacheMenuVersions: false
  253. AllowFreeForm: true
  254. 1
  255. name: ComboBox
  256. attrs
  257. Alt: STR@L_FontSize
  258. Id: fontSize
  259. MenuAlt: STR@L_FontSize
  260. Command: 0x8585837E
  261. CommandMenuOpen: 0x215688C3
  262. CommandMenuClose: 0xB15EF301
  263. QueryCommand: 0xE43EEA4E
  264. TemplateAlias: fontSize
  265. Width: 30px
  266. AllowFreeForm: true
  267. ImageArrow: IMGMAP@one@SplitButtonArrow
  268. children
  269. 0
  270. name: Menu
  271. attrs
  272. children
  273. 0
  274. name: MenuSection
  275. attrs
  276. Id: fontSizes
  277. children
  278. 0
  279. name: Controls
  280. attrs
  281. Id: ctrlFontSizes
  282. children
  283. 0
  284. name: Button
  285. attrs
  286. MenuItemId: 8
  287. Id: 8
  288. Command: 0x8585837E
  289. LabelText: STR@L_FontSize8
  290. 1
  291. name: Button
  292. attrs
  293. MenuItemId: 9
  294. Id: 9
  295. Command: 0x8585837E
  296. LabelText: STR@L_FontSize9
  297. 2
  298. name: Button
  299. attrs
  300. MenuItemId: 10
  301. Id: 10
  302. Command: 0x8585837E
  303. LabelText: STR@L_FontSize10
  304. 3
  305. name: Button
  306. attrs
  307. MenuItemId: 11
  308. Id: 11
  309. Command: 0x8585837E
  310. LabelText: STR@L_FontSize11
  311. 4
  312. name: Button
  313. attrs
  314. MenuItemId: 12
  315. Id: 12
  316. Command: 0x8585837E
  317. LabelText: STR@L_FontSize12
  318. 5
  319. name: Button
  320. attrs
  321. MenuItemId: 14
  322. Id: 14
  323. Command: 0x8585837E
  324. LabelText: STR@L_FontSize14
  325. 6
  326. name: Button
  327. attrs
  328. MenuItemId: 16
  329. Id: 16
  330. Command: 0x8585837E
  331. LabelText: STR@L_FontSize16
  332. 7
  333. name: Button
  334. attrs
  335. MenuItemId: 18
  336. Id: 18
  337. Command: 0x8585837E
  338. LabelText: STR@L_FontSize18
  339. 8
  340. name: Button
  341. attrs
  342. MenuItemId: 20
  343. Id: 20
  344. Command: 0x8585837E
  345. LabelText: STR@L_FontSize20
  346. 9
  347. name: Button
  348. attrs
  349. MenuItemId: 24
  350. Id: 24
  351. Command: 0x8585837E
  352. LabelText: STR@L_FontSize24
  353. 10
  354. name: Button
  355. attrs
  356. MenuItemId: 26
  357. Id: 26
  358. Command: 0x8585837E
  359. LabelText: STR@L_FontSize26
  360. 11
  361. name: Button
  362. attrs
  363. MenuItemId: 28
  364. Id: 28
  365. Command: 0x8585837E
  366. LabelText: STR@L_FontSize28
  367. 12
  368. name: Button
  369. attrs
  370. MenuItemId: 36
  371. Id: 36
  372. Command: 0x8585837E
  373. LabelText: STR@L_FontSize36
  374. 13
  375. name: Button
  376. attrs
  377. MenuItemId: 48
  378. Id: 48
  379. Command: 0x8585837E
  380. LabelText: STR@L_FontSize48
  381. 14
  382. name: Button
  383. attrs
  384. MenuItemId: 72
  385. Id: 72
  386. Command: 0x8585837E
  387. LabelText: STR@L_FontSize72
  388. 2
  389. name: FlyoutAnchor
  390. attrs
  391. Id: fsfaBullets
  392. Command: 0xBA49231F
  393. CommandMenuClose: 0xB15EF301
  394. MenuAlt: STR@L_MenuBullets
  395. LabelText: STR@L_MenuBullets
  396. Image16by16: IMGMAP@one@BulletsPS
  397. ImageArrow: IMGMAP@one@SplitButtonArrow
  398. TemplateAlias: bullets
  399. children
  400. 0
  401. name: Menu
  402. attrs
  403. Id: menuBullets
  404. children
  405. 0
  406. name: MenuSection
  407. attrs
  408. Id: msAllBulletStyles
  409. DisplayMode: Menu16
  410. children
  411. 0
  412. name: Controls
  413. attrs
  414. Id: ctrlBulletStyles
  415. children
  416. 0
  417. name: Button
  418. attrs
  419. Id: buttonBulletStyleRemove
  420. Command: 0x36C0ADC5
  421. Image16by16: IMGMAP@one@BulletsPS
  422. LabelText: STR@L_RemoveBullet
  423. 1
  424. name: Button
  425. attrs
  426. Id: buttonBulletStyleDefault
  427. Command: 0x36C0ADC5
  428. Image16by16: IMGMAP@one@BulletsPS
  429. LabelText: STR@L_BulletStyleDefault
  430. 2
  431. name: Button
  432. attrs
  433. Id: buttonBulletStyle1
  434. Command: 0x36C0ADC5
  435. Image16by16: IMGMAP@one@BulletsPS
  436. LabelText: STR@L_BulletStyle1
  437. 3
  438. name: Button
  439. attrs
  440. Id: buttonBulletStyle2
  441. Command: 0x36C0ADC5
  442. Image16by16: IMGMAP@one@BulletsPS
  443. LabelText: STR@L_BulletStyle2
  444. 4
  445. name: Button
  446. attrs
  447. Id: buttonBulletStyle3
  448. Command: 0x36C0ADC5
  449. Image16by16: IMGMAP@one@BulletsPS
  450. LabelText: STR@L_BulletStyle3
  451. 3
  452. name: FlyoutAnchor
  453. attrs
  454. Id: fsfaNumbering
  455. Command: 0xBA49231F
  456. CommandMenuClose: 0xB15EF301
  457. MenuAlt: STR@L_MenuNumbering
  458. LabelText: STR@L_MenuNumbering
  459. Image16by16: IMGMAP@one@NumberingPS
  460. ImageArrow: IMGMAP@one@SplitButtonArrow
  461. TemplateAlias: numbering
  462. children
  463. 0
  464. name: Menu
  465. attrs
  466. Id: menuNumbering
  467. children
  468. 0
  469. name: MenuSection
  470. attrs
  471. Id: msAllNumberStyles
  472. DisplayMode: Menu16
  473. children
  474. 0
  475. name: Controls
  476. attrs
  477. Id: ctrlNumberStyles
  478. children
  479. 0
  480. name: Button
  481. attrs
  482. Id: buttonNumberStyleRemove
  483. Command: 0x2E609993
  484. Image16by16: IMGMAP@one@NumberingPS
  485. LabelText: STR@L_RemoveNumber
  486. 1
  487. name: Button
  488. attrs
  489. Id: buttonNumberStyleDefault
  490. Command: 0x2E609993
  491. Image16by16: IMGMAP@one@NumberingPS
  492. LabelText: STR@L_NumberStyleDefault
  493. 2
  494. name: Button
  495. attrs
  496. Id: buttonNumberStyle1
  497. Command: 0x2E609993
  498. Image16by16: IMGMAP@one@NumberingPS
  499. LabelText: STR@L_NumberStyle1
  500. 3
  501. name: Button
  502. attrs
  503. Id: buttonNumberStyle2
  504. Command: 0x2E609993
  505. Image16by16: IMGMAP@one@NumberingPS
  506. LabelText: STR@L_NumberStyle2
  507. 4
  508. name: Button
  509. attrs
  510. Id: buttonNumberStyle3
  511. Command: 0x2E609993
  512. Image16by16: IMGMAP@one@NumberingPS
  513. LabelText: STR@L_NumberStyle3
  514. 5
  515. name: Button
  516. attrs
  517. Id: buttonNumberStyle4
  518. Command: 0x2E609993
  519. Image16by16: IMGMAP@one@NumberingPS
  520. LabelText: STR@L_NumberStyle4
  521. 6
  522. name: Button
  523. attrs
  524. Id: buttonNumberStyle5
  525. Command: 0x2E609993
  526. Image16by16: IMGMAP@one@NumberingPS
  527. LabelText: STR@L_NumberStyle5
  528. 4
  529. name: Button
  530. attrs
  531. Id: fseaClearFormatting
  532. Command: 0x8A46CCCC
  533. Image16by16: IMGMAP@one@ClearFormattingPS
  534. LabelText: STR@L_ClearFormatting
  535. TemplateAlias: clearformat
  536. 5
  537. name: ToggleButton
  538. attrs
  539. Id: fsbcBold
  540. Alt: STR@L_Bold
  541. Command: 0xF6F32311
  542. QueryCommand: 0x575E8BDF
  543. Image16by16: IMGMAP@one@BoldPS
  544. TemplateAlias: bold
  545. 6
  546. name: ToggleButton
  547. attrs
  548. Id: fsbcItalic
  549. Alt: STR@L_Italic
  550. Command: 0x693612DA
  551. QueryCommand: 0xFC350CA2
  552. Image16by16: IMGMAP@one@ItalicPS
  553. TemplateAlias: italic
  554. 7
  555. name: ToggleButton
  556. attrs
  557. Id: fsbcUnderline
  558. Alt: STR@L_Underline
  559. Command: 0x6F0FAAC6
  560. QueryCommand: 0x89383C62
  561. Image16by16: IMGMAP@one@UnderlinePS
  562. TemplateAlias: underline
  563. 8
  564. name: ToggleButton
  565. attrs
  566. Id: fsbcStrikethrough
  567. Alt: STR@L_Strikethrough
  568. Command: 0xF87F5805
  569. QueryCommand: 0xA3731E4F
  570. Image16by16: IMGMAP@one@Strikethrough2PS
  571. LabelText: STR@L_Strikethrough
  572. TemplateAlias: strikethrough
  573. 9
  574. name: SplitButton
  575. attrs
  576. Id: sbSubscript
  577. Alt: STR@L_Subscript
  578. Command: 0x56BFC40F
  579. CommandMenuOpen: 0x215688C3
  580. CommandMenuClose: 0xB15EF301
  581. Image16by16: IMGMAP@one@SubscriptPS
  582. ImageArrow: IMGMAP@one@SplitButtonArrow
  583. TemplateAlias: subscript
  584. children
  585. 0
  586. name: Menu
  587. attrs
  588. Id: menuSubscript
  589. children
  590. 0
  591. name: MenuSection
  592. attrs
  593. Id: msSubscript
  594. DisplayMode: Menu16
  595. children
  596. 0
  597. name: Controls
  598. attrs
  599. Id: msSubscript.Controls
  600. children
  601. 0
  602. name: ToggleButton
  603. attrs
  604. Id: fsbcSubscript
  605. Command: 0x56BFC40F
  606. QueryCommand: 0xEC0CB24D
  607. Image16by16: IMGMAP@one@SubscriptPS
  608. LabelText: STR@L_Subscript
  609. 1
  610. name: ToggleButton
  611. attrs
  612. Id: fsbcSuperscript
  613. Command: 0x0010E69E
  614. QueryCommand: 0x294CD86A
  615. Image16by16: IMGMAP@one@SuperscriptPS
  616. LabelText: STR@L_Superscript
  617. 10
  618. name: FlyoutAnchor
  619. attrs
  620. Id: fontColor
  621. Command: 0xBA49231F
  622. CommandMenuClose: 0xB15EF301
  623. Image16by16: IMGMAP@one@FontColorPS
  624. ImageArrow: IMGMAP@one@SplitButtonArrow
  625. LabelText: STR@L_MenuFontColor
  626. TemplateAlias: fontColor
  627. children
  628. 0
  629. name: Menu
  630. attrs
  631. Id: menuFontColor
  632. children
  633. 0
  634. name: MenuSection
  635. attrs
  636. Id: fontColor
  637. DisplayMode: Menu16
  638. children
  639. 0
  640. name: Controls
  641. attrs
  642. Id: Font.Color.Menu.Controls
  643. children
  644. 0
  645. name: Button
  646. attrs
  647. Command: 0xD0232D5B
  648. LabelText: STR@L_Automatic
  649. Id: automatic
  650. Image16by16: IMGMAP@one@NoIconYetPS
  651. 1
  652. name: MenuSection
  653. attrs
  654. Id: Colors
  655. children
  656. 0
  657. name: Controls
  658. attrs
  659. Id: Font.Color.Menu.Controls
  660. children
  661. 0
  662. name: ColorPicker
  663. attrs
  664. Id: fontColor
  665. Command: 0xC6D2EFE6
  666. children
  667. 0
  668. name: Colors
  669. attrs
  670. children
  671. 0
  672. name: Color
  673. attrs
  674. Color: FFFFFF
  675. DisplayColor: #FFFFFF
  676. Alt: STR@L_FontColorWhite
  677. 1
  678. name: Color
  679. attrs
  680. Color: 000000
  681. DisplayColor: #000000
  682. Alt: STR@L_FontColorBlack
  683. 2
  684. name: Color
  685. attrs
  686. Color: E1ECEE
  687. DisplayColor: #EEECE1
  688. Alt: STR@L_FontColorTan
  689. 3
  690. name: Color
  691. attrs
  692. Color: 7D491F
  693. DisplayColor: #1F497D
  694. Alt: STR@L_FontColorDarkBlue
  695. 4
  696. name: Color
  697. attrs
  698. Color: BD814F
  699. DisplayColor: #4F81BD
  700. Alt: STR@L_FontColorBlue
  701. 5
  702. name: Color
  703. attrs
  704. Color: 4D50C0
  705. DisplayColor: #C0504D
  706. Alt: STR@L_FontColorRed
  707. 6
  708. name: Color
  709. attrs
  710. Color: 59BB9B
  711. DisplayColor: #9BBB59
  712. Alt: STR@L_FontColorOliveGreen
  713. 7
  714. name: Color
  715. attrs
  716. Color: A26480
  717. DisplayColor: #8064A2
  718. Alt: STR@L_FontColorPurple
  719. 8
  720. name: Color
  721. attrs
  722. Color: C6AC4B
  723. DisplayColor: #4BACC6
  724. Alt: STR@L_FontColorAqua
  725. 9
  726. name: Color
  727. attrs
  728. Color: 4696F7
  729. DisplayColor: #F79646
  730. Alt: STR@L_FontColorOrange
  731. 10
  732. name: Color
  733. attrs
  734. Color: F2F2F2
  735. DisplayColor: #F2F2F2
  736. Alt: STR@L_FontColorWhiteDarker5pct
  737. 11
  738. name: Color
  739. attrs
  740. Color: 7F7F7F
  741. DisplayColor: #7F7F7F
  742. Alt: STR@L_FontColorBlackLighter50pct
  743. 12
  744. name: Color
  745. attrs
  746. Color: C3D9DD
  747. DisplayColor: #DDD9C3
  748. Alt: STR@L_FontColorTanDarker10pct
  749. 13
  750. name: Color
  751. attrs
  752. Color: F0D9C6
  753. DisplayColor: #C6D9F0
  754. Alt: STR@L_FontColorDarkBlueLighter80pct
  755. 14
  756. name: Color
  757. attrs
  758. Color: F1E5DB
  759. DisplayColor: #DBE5F1
  760. Alt: STR@L_FontColorBlueLighter80pct
  761. 15
  762. name: Color
  763. attrs
  764. Color: DBDCF2
  765. DisplayColor: #F2DCDB
  766. Alt: STR@L_FontColorRedLighter80pct
  767. 16
  768. name: Color
  769. attrs
  770. Color: DDF1EB
  771. DisplayColor: #EBF1DD
  772. Alt: STR@L_FontColorOliveGreenLighter80pct
  773. 17
  774. name: Color
  775. attrs
  776. Color: ECE0E5
  777. DisplayColor: #E5E0EC
  778. Alt: STR@L_FontColorPurpleLighter80pct
  779. 18
  780. name: Color
  781. attrs
  782. Color: F3EEDB
  783. DisplayColor: #DBEEF3
  784. Alt: STR@L_FontColorAquaLighter80pct
  785. 19
  786. name: Color
  787. attrs
  788. Color: DAEAFD
  789. DisplayColor: #FDEADA
  790. Alt: STR@L_FontColorOrangeLighter80pct
  791. 20
  792. name: Color
  793. attrs
  794. Color: D8D8D8
  795. DisplayColor: #D8D8D8
  796. Alt: STR@L_FontColorWhiteDarker15pct
  797. 21
  798. name: Color
  799. attrs
  800. Color: 595959
  801. DisplayColor: #595959
  802. Alt: STR@L_FontColorBlackLighter35pct
  803. 22
  804. name: Color
  805. attrs
  806. Color: 97BDC4
  807. DisplayColor: #C4BD97
  808. Alt: STR@L_FontColorTanDarker25pct
  809. 23
  810. name: Color
  811. attrs
  812. Color: E2B38D
  813. DisplayColor: #8DB3E2
  814. Alt: STR@L_FontColorDarkBlueLighter60pct
  815. 24
  816. name: Color
  817. attrs
  818. Color: E4CCB8
  819. DisplayColor: #B8CCE4
  820. Alt: STR@L_FontColorBlueLighter60pct
  821. 25
  822. name: Color
  823. attrs
  824. Color: B7B9E5
  825. DisplayColor: #E5B9B7
  826. Alt: STR@L_FontColorRedLighter60pct
  827. 26
  828. name: Color
  829. attrs
  830. Color: BCE3D7
  831. DisplayColor: #D7E3BC
  832. Alt: STR@L_FontColorOliveGreenLighter60pct
  833. 27
  834. name: Color
  835. attrs
  836. Color: D9C1CC
  837. DisplayColor: #CCC1D9
  838. Alt: STR@L_FontColorPurpleLighter60pct
  839. 28
  840. name: Color
  841. attrs
  842. Color: E8DDB7
  843. DisplayColor: #B7DDE8
  844. Alt: STR@L_FontColorAquaLighter60pct
  845. 29
  846. name: Color
  847. attrs
  848. Color: B5D5FB
  849. DisplayColor: #FBD5B5
  850. Alt: STR@L_FontColorOrangeLighter60pct
  851. 30
  852. name: Color
  853. attrs
  854. Color: BFBFBF
  855. DisplayColor: #BFBFBF
  856. Alt: STR@L_FontColorWhiteDarker25pct
  857. 31
  858. name: Color
  859. attrs
  860. Color: 3F3F3F
  861. DisplayColor: #3F3F3F
  862. Alt: STR@L_FontColorBlackLighter25pct
  863. 32
  864. name: Color
  865. attrs
  866. Color: 538993
  867. DisplayColor: #938953
  868. Alt: STR@L_FontColorTanDarker50pct
  869. 33
  870. name: Color
  871. attrs
  872. Color: D48D54
  873. DisplayColor: #548DD4
  874. Alt: STR@L_FontColorDarkBlueLighter40pct
  875. 34
  876. name: Color
  877. attrs
  878. Color: D7B395
  879. DisplayColor: #95B3D7
  880. Alt: STR@L_FontColorBlueLighter40pct
  881. 35
  882. name: Color
  883. attrs
  884. Color: 9496D9
  885. DisplayColor: #D99694
  886. Alt: STR@L_FontColorRedLighter40pct
  887. 36
  888. name: Color
  889. attrs
  890. Color: 9BD6C3
  891. DisplayColor: #C3D69B
  892. Alt: STR@L_FontColorOliveGreenLighter40pct
  893. 37
  894. name: Color
  895. attrs
  896. Color: C7A2B2
  897. DisplayColor: #B2A2C7
  898. Alt: STR@L_FontColorPurpleLighter40pct
  899. 38
  900. name: Color
  901. attrs
  902. Color: DCCD92
  903. DisplayColor: #92CDDC
  904. Alt: STR@L_FontColorAquaLighter40pct
  905. 39
  906. name: Color
  907. attrs
  908. Color: 8FC0FA
  909. DisplayColor: #FAC08F
  910. Alt: STR@L_FontColorOrangeLighter40pct
  911. 40
  912. name: Color
  913. attrs
  914. Color: A5A5A5
  915. DisplayColor: #A5A5A5
  916. Alt: STR@L_FontColorWhiteDarker35pct
  917. 41
  918. name: Color
  919. attrs
  920. Color: 262626
  921. DisplayColor: #262626
  922. Alt: STR@L_FontColorBlackLighter15pct
  923. 42
  924. name: Color
  925. attrs
  926. Color: 294449
  927. DisplayColor: #494429
  928. Alt: STR@L_FontColorTanDarker75pct
  929. 43
  930. name: Color
  931. attrs
  932. Color: 5D3617
  933. DisplayColor: #17365D
  934. Alt: STR@L_FontColorDarkBlueDarker25pct
  935. 44
  936. name: Color
  937. attrs
  938. Color: 926036
  939. DisplayColor: #366092
  940. Alt: STR@L_FontColorBlueDarker25pct
  941. 45
  942. name: Color
  943. attrs
  944. Color: 343795
  945. DisplayColor: #953734
  946. Alt: STR@L_FontColorRedDarker25pct
  947. 46
  948. name: Color
  949. attrs
  950. Color: 3C9276
  951. DisplayColor: #76923C
  952. Alt: STR@L_FontColorOliveGreenDarker25pct
  953. 47
  954. name: Color
  955. attrs
  956. Color: 7A495F
  957. DisplayColor: #5F497A
  958. Alt: STR@L_FontColorPurpleDarker25pct
  959. 48
  960. name: Color
  961. attrs
  962. Color: 9B8431
  963. DisplayColor: #31849B
  964. Alt: STR@L_FontColorAquaDarker25pct
  965. 49
  966. name: Color
  967. attrs
  968. Color: 096CE3
  969. DisplayColor: #E36C09
  970. Alt: STR@L_FontColorOrangeDarker25pct
  971. 50
  972. name: Color
  973. attrs
  974. Color: 7F7F7F
  975. DisplayColor: #7F7F7F
  976. Alt: STR@L_FontColorWhiteDarker50pct
  977. 51
  978. name: Color
  979. attrs
  980. Color: 0C0C0C
  981. DisplayColor: #0C0C0C
  982. Alt: STR@L_FontColorBlackLighter5pct
  983. 52
  984. name: Color
  985. attrs
  986. Color: 101B1D
  987. DisplayColor: #1D1B10
  988. Alt: STR@L_FontColorTan Darker90pct
  989. 53
  990. name: Color
  991. attrs
  992. Color: E3240F
  993. DisplayColor: #0F243E
  994. Alt: STR@L_FontColorDarkBlueDarker50pct
  995. 54
  996. name: Color
  997. attrs
  998. Color: 614024
  999. DisplayColor: #244061
  1000. Alt: STR@L_FontColorBlueDarker50pct
  1001. 55
  1002. name: Color
  1003. attrs
  1004. Color: 232463
  1005. DisplayColor: #632423
  1006. Alt: STR@L_FontColorRedDarker50pct
  1007. 56
  1008. name: Color
  1009. attrs
  1010. Color: 28614F
  1011. DisplayColor: #4F6128
  1012. Alt: STR@L_FontColorOliveGreenDarker50pct
  1013. 57
  1014. name: Color
  1015. attrs
  1016. Color: 51313F
  1017. DisplayColor: #3F3151
  1018. Alt: STR@L_FontColorPurpleDarker50pct
  1019. 58
  1020. name: Color
  1021. attrs
  1022. Color: 675820
  1023. DisplayColor: #205867
  1024. Alt: STR@L_FontColorAquaDarker50pct
  1025. 59
  1026. name: Color
  1027. attrs
  1028. Color: 064898
  1029. DisplayColor: #984806
  1030. Alt: STR@L_FontColorOrangeDarker50pct
  1031. 2
  1032. name: MenuSection
  1033. attrs
  1034. Id: fontColor
  1035. Title: STR@L_MenuStandardColors
  1036. children
  1037. 0
  1038. name: Controls
  1039. attrs
  1040. Id: Font.Color.Menu.Controls
  1041. children
  1042. 0
  1043. name: ColorPicker
  1044. attrs
  1045. Id: fontColor
  1046. Command: 0xC6D2EFE6
  1047. children
  1048. 0
  1049. name: Colors
  1050. attrs
  1051. children
  1052. 0
  1053. name: Color
  1054. attrs
  1055. Color: 0000C0
  1056. Alt: STR@L_FontColorDarkRed
  1057. DisplayColor: #C00000
  1058. 1
  1059. name: Color
  1060. attrs
  1061. Color: 0000FF
  1062. Alt: STR@L_FontColorRed
  1063. DisplayColor: #FF0000
  1064. 2
  1065. name: Color
  1066. attrs
  1067. Color: 00C0FF
  1068. Alt: STR@L_FontColorOrange
  1069. DisplayColor: #FFC000
  1070. 3
  1071. name: Color
  1072. attrs
  1073. Color: 00FFFF
  1074. Alt: STR@L_FontColorYellow
  1075. DisplayColor: #FFFF00
  1076. 4
  1077. name: Color
  1078. attrs
  1079. Color: 50D092
  1080. Alt: STR@L_FontColorLightGreen
  1081. DisplayColor: #92D050
  1082. 5
  1083. name: Color
  1084. attrs
  1085. Color: 50B000
  1086. Alt: STR@L_FontColorDarkGreen
  1087. DisplayColor: #00B050
  1088. 6
  1089. name: Color
  1090. attrs
  1091. Color: F0B000
  1092. Alt: STR@L_FontColorLightBlue
  1093. DisplayColor: #00B0F0
  1094. 7
  1095. name: Color
  1096. attrs
  1097. Color: C07000
  1098. Alt: STR@L_FontColorBlue
  1099. DisplayColor: #0070C0
  1100. 8
  1101. name: Color
  1102. attrs
  1103. Color: 602000
  1104. Alt: STR@L_FontColorDarkBlue
  1105. DisplayColor: #002060
  1106. 9
  1107. name: Color
  1108. attrs
  1109. Color: A03070
  1110. Alt: STR@L_FontColorPurple
  1111. DisplayColor: #7030A0
  1112. 11
  1113. name: FlyoutAnchor
  1114. attrs
  1115. Id: fontBackgroundColor
  1116. Command: 0xBA49231F
  1117. CommandMenuClose: 0xB15EF301
  1118. Image16by16: IMGMAP@one@HighlightPS
  1119. ImageArrow: IMGMAP@one@SplitButtonArrow
  1120. LabelText: STR@L_MenuHighlightColor
  1121. TemplateAlias: fontBackgroundColor
  1122. children
  1123. 0
  1124. name: Menu
  1125. attrs
  1126. Id: menuFontBackgroundColor
  1127. children
  1128. 0
  1129. name: MenuSection
  1130. attrs
  1131. Id: fontBackgroundColor
  1132. children
  1133. 0
  1134. name: Controls
  1135. attrs
  1136. Id: Background.Font.Color.Menu.Controls
  1137. children
  1138. 0
  1139. name: ColorPicker
  1140. attrs
  1141. Id: fontBackgroundColor
  1142. Command: 0x1DE8534A
  1143. children
  1144. 0
  1145. name: Colors
  1146. attrs
  1147. children
  1148. 0
  1149. name: Color
  1150. attrs
  1151. Color: 00FFFF
  1152. Alt: STR@L_FontColorYellow
  1153. DisplayColor: #FFFF00
  1154. 1
  1155. name: Color
  1156. attrs
  1157. Color: 00FF00
  1158. Alt: STR@L_FontColorGreen
  1159. DisplayColor: #00FF00
  1160. 2
  1161. name: Color
  1162. attrs
  1163. Color: FFFF00
  1164. Alt: STR@L_FontColorCyan
  1165. DisplayColor: #00FFFF
  1166. 3
  1167. name: Color
  1168. attrs
  1169. Color: FF00FF
  1170. Alt: STR@L_FontColorMagenta
  1171. DisplayColor: #FF00FF
  1172. 4
  1173. name: Color
  1174. attrs
  1175. Color: FF0000
  1176. Alt: STR@L_FontColorBlue
  1177. DisplayColor: #0000FF
  1178. 5
  1179. name: Color
  1180. attrs
  1181. Color: 0000FF
  1182. Alt: STR@L_FontColorRed
  1183. DisplayColor: #FF0000
  1184. 6
  1185. name: Color
  1186. attrs
  1187. Color: 800000
  1188. Alt: STR@L_FontColorDarkBlue
  1189. DisplayColor: #000080
  1190. 7
  1191. name: Color
  1192. attrs
  1193. Color: 808000
  1194. Alt: STR@L_FontColorDarkCyan
  1195. DisplayColor: #008080
  1196. 8
  1197. name: Color
  1198. attrs
  1199. Color: 008000
  1200. Alt: STR@L_FontColorDarkGreen
  1201. DisplayColor: #008080
  1202. 9
  1203. name: Color
  1204. attrs
  1205. Color: 800080
  1206. Alt: STR@L_FontColorDarkMagenta
  1207. DisplayColor: #800080
  1208. 10
  1209. name: Color
  1210. attrs
  1211. Color: 000080
  1212. Alt: STR@L_FontColorDarkRed
  1213. DisplayColor: #800000
  1214. 11
  1215. name: Color
  1216. attrs
  1217. Color: 008080
  1218. Alt: STR@L_FontColorDarkYellow
  1219. DisplayColor: #808000
  1220. 12
  1221. name: Color
  1222. attrs
  1223. Color: 808080
  1224. Alt: STR@L_FontColorGrey
  1225. DisplayColor: #808080
  1226. 13
  1227. name: Color
  1228. attrs
  1229. Color: C0C0C0
  1230. Alt: STR@L_FontColorLightGrey
  1231. DisplayColor: #C0C0C0
  1232. 14
  1233. name: Color
  1234. attrs
  1235. Color: 000000
  1236. Alt: STR@L_FontColorBlack
  1237. DisplayColor: #000000
  1238. 1
  1239. name: MenuSection
  1240. attrs
  1241. Id: noFontBackgroundColor
  1242. DisplayMode: Menu16
  1243. children
  1244. 0
  1245. name: Controls
  1246. attrs
  1247. Id: No.Background.Font.Color.Menu.Controls
  1248. children
  1249. 0
  1250. name: Button
  1251. attrs
  1252. Command: 0x2184F4E5
  1253. Id: none
  1254. LabelText: STR@L_NoHighlight
  1255. Image16by16: IMGMAP@one@NoIconYetPS
  1256. 12
  1257. name: Button
  1258. attrs
  1259. Id: fseaOutdent
  1260. Command: 0xDE14BFF6
  1261. Image16by16: IMGMAP@one@OutdentPS
  1262. LabelText: STR@L_DecreaseIndent
  1263. TemplateAlias: outdent
  1264. 13
  1265. name: Button
  1266. attrs
  1267. Id: fseaIndent
  1268. Command: 0x52C8F8EA
  1269. Image16by16: IMGMAP@one@IndentPS
  1270. LabelText: STR@L_IncreaseIndent
  1271. TemplateAlias: indent
  1272. 14
  1273. name: FlyoutAnchor
  1274. attrs
  1275. Id: faAlignment
  1276. Command: 0xBA49231F
  1277. CommandMenuClose: 0xB15EF301
  1278. LabelText: STR@L_MenuAlignment
  1279. Image16by16: IMGMAP@one@LeftJustifyPS
  1280. ImageArrow: IMGMAP@one@SplitButtonArrow
  1281. TemplateAlias: alignment
  1282. children
  1283. 0
  1284. name: Menu
  1285. attrs
  1286. Id: menuAlignment
  1287. children
  1288. 0
  1289. name: MenuSection
  1290. attrs
  1291. Id: msAlignment
  1292. DisplayMode: Menu16
  1293. children
  1294. 0
  1295. name: Controls
  1296. attrs
  1297. Id: msAlignment.Controls
  1298. children
  1299. 0
  1300. name: ToggleButton
  1301. attrs
  1302. Id: LeftJustify
  1303. Command: 0x9757E6E5
  1304. QueryCommand: 0xE25D77A3
  1305. Image16by16: IMGMAP@one@LeftJustifyPS
  1306. Alt: STR@L_AlignTextLeft
  1307. LabelText: STR@L_AlignTextLeft
  1308. 1
  1309. name: ToggleButton
  1310. attrs
  1311. Id: CenterJustify
  1312. Command: 0xFF58B829
  1313. QueryCommand: 0xC27E85BB
  1314. Image16by16: IMGMAP@one@CenteredPS
  1315. Alt: STR@L_JustifyCenter
  1316. LabelText: STR@L_JustifyCenter
  1317. 2
  1318. name: ToggleButton
  1319. attrs
  1320. Id: RightJustify
  1321. Command: 0x17730524
  1322. QueryCommand: 0x776E8734
  1323. Image16by16: IMGMAP@one@RightJustifyPS
  1324. Alt: STR@L_AlignTextRight
  1325. LabelText: STR@L_AlignTextRight
  1326. 1
  1327. name: MenuSection
  1328. attrs
  1329. Id: msAlignmentLTR
  1330. DisplayMode: Menu16
  1331. children
  1332. 0
  1333. name: Controls
  1334. attrs
  1335. Id: msAlignmentLTR.Controls
  1336. children
  1337. 0
  1338. name: ToggleButton
  1339. attrs
  1340. Id: TextDirLTR
  1341. Command: 0xF47C0C5A
  1342. QueryCommand: 0x44D4414A
  1343. Image16by16: IMGMAP@one@LtrPS
  1344. LabelText: STR@L_TextDirLTR
  1345. 1
  1346. name: ToggleButton
  1347. attrs
  1348. Id: TextDirRTL
  1349. Command: 0x4A9EE59A
  1350. QueryCommand: 0x44D43E8A
  1351. Image16by16: IMGMAP@one@RtlPS
  1352. LabelText: STR@L_TextDirRTL
  1353. 2
  1354. name: Group
  1355. attrs
  1356. Id: grpStyles
  1357. Description:
  1358. Title: STR@L_GroupStyles
  1359. Template: tmpStyles
  1360. children
  1361. 0
  1362. name: Controls
  1363. attrs
  1364. children
  1365. 0
  1366. name: GalleryButton
  1367. attrs
  1368. Id: buttonStaticStyle1
  1369. Command: 0x3E088D63
  1370. QueryCommand: 0xBA30CCB1
  1371. InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle1" id="labelPreviewContent0">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle0">Heading 1</P></DIV>
  1372. ElementDimensions: Size64by48
  1373. LabelText: STR@L_StyleHeading1
  1374. Alt: STR@L_StyleHeading1
  1375. TemplateAlias: preview1
  1376. 1
  1377. name: GalleryButton
  1378. attrs
  1379. Id: buttonStaticStyle2
  1380. Command: 0x3E088D63
  1381. QueryCommand: 0xBA30CCB1
  1382. InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle2" id="labelPreviewContent1">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle1">Heading 2</P></DIV>
  1383. ElementDimensions: Size64by48
  1384. LabelText: STR@L_StyleHeading2
  1385. Alt: STR@L_StyleHeading2
  1386. TemplateAlias: preview2
  1387. 2
  1388. name: GalleryButton
  1389. attrs
  1390. Id: buttonStaticStyle3
  1391. QueryCommand: 0xBA30CCB1
  1392. Command: 0x3E088D63
  1393. InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle3" id="labelPreviewContent2">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle2">Heading 3</P></DIV>
  1394. ElementDimensions: Size64by48
  1395. LabelText: STR@L_StyleHeading3
  1396. Alt: STR@L_StyleHeading3
  1397. TemplateAlias: preview3
  1398. 3
  1399. name: GalleryButton
  1400. attrs
  1401. Id: buttonStaticStyle4
  1402. Command: 0x3E088D63
  1403. QueryCommand: 0xBA30CCB1
  1404. InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle4" id="labelPreviewContent3">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle3">Quote</P></DIV>
  1405. ElementDimensions: Size64by48
  1406. LabelText: STR@L_StyleQuote
  1407. Alt: STR@L_StyleQuote
  1408. TemplateAlias: preview4
  1409. 4
  1410. name: GalleryButton
  1411. attrs
  1412. Id: buttonStaticStyle5
  1413. Command: 0x3E088D63
  1414. QueryCommand: 0xBA30CCB1
  1415. InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle5" id="labelPreviewContent4">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle4">Citation</P></DIV>
  1416. ElementDimensions: Size64by48
  1417. LabelText: STR@L_StyleCitation
  1418. Alt: STR@L_StyleCitation
  1419. TemplateAlias: preview5
  1420. 5
  1421. name: FlyoutAnchor
  1422. attrs
  1423. Alt: STR@L_MenuMoreStyles
  1424. Id: fsfaMoreStyles
  1425. Command: 0xBA49231F
  1426. MenuAlt: STR@L_MenuMoreStyles
  1427. LabelText: STR@L_MenuMoreStyles
  1428. Image32by32: IMGMAP@one@UxGalWordQuickFormatsHH
  1429. Image16by16: IMGMAP@one@NoIconYetPS
  1430. ImageArrow: IMGMAP@one@SplitButtonArrow
  1431. TemplateAlias: morestyles
  1432. PopulateDynamically: true
  1433. PopulateOnlyOnce: false
  1434. PopulateQueryCommand: 0x289E9560
  1435. CommandMenuClose: 0xB15EF301
  1436. CacheMenuVersions: false
  1437. 3
  1438. name: Group
  1439. attrs
  1440. Id: grpNoteTags
  1441. Description:
  1442. Title: STR@L_GroupTags
  1443. Template: tmpOneButton
  1444. children
  1445. 0
  1446. name: Controls
  1447. attrs
  1448. Id: grpNoteTags.Controls
  1449. children
  1450. 0
  1451. name: FlyoutAnchor
  1452. attrs
  1453. Id: flyNoteTags
  1454. Alt: STR@L_NoteTags
  1455. Image32by32: IMGMAP@one@NoteTagsHH
  1456. ImageArrow: IMGMAP@one@SplitButtonArrow
  1457. LabelText: STR@L_NoteTags
  1458. Command: 0x0316F274
  1459. CommandMenuOpen: 0x215688C3
  1460. CommandMenuClose: 0xB15EF301
  1461. TemplateAlias: button1
  1462. children
  1463. 0
  1464. name: Menu
  1465. attrs
  1466. Id: menuNoteTags
  1467. children
  1468. 0
  1469. name: MenuSection
  1470. attrs
  1471. Id: msNoteTagInsert
  1472. DisplayMode: Menu16
  1473. children
  1474. 0
  1475. name: Controls
  1476. attrs
  1477. Id: ctrlNoteTagInsert
  1478. children
  1479. 0
  1480. name: Button
  1481. attrs
  1482. Id: NT0
  1483. Command: 0x81B914F1
  1484. Image16by16: IMGMAP@one@3_16_M
  1485. LabelText: STR@l_NoteTag_0
  1486. 1
  1487. name: Button
  1488. attrs
  1489. Id: NT1
  1490. Command: 0x81B914F1
  1491. Image16by16: IMGMAP@one@13_16_N
  1492. LabelText: STR@l_NoteTag_1
  1493. 2
  1494. name: Button
  1495. attrs
  1496. Id: NT2
  1497. Command: 0x81B914F1
  1498. Image16by16: IMGMAP@one@15_16_N
  1499. LabelText: STR@l_NoteTag_2
  1500. 3
  1501. name: Button
  1502. attrs
  1503. Id: NT3
  1504. Command: 0x81B914F1
  1505. Image16by16: IMGMAP@one@NoteTagNoShape
  1506. LabelText: STR@l_NoteTag_3
  1507. 4
  1508. name: Button
  1509. attrs
  1510. Id: NT4
  1511. Command: 0x81B914F1
  1512. Image16by16: IMGMAP@one@NoteTagNoShape
  1513. LabelText: STR@l_NoteTag_4
  1514. 5
  1515. name: Button
  1516. attrs
  1517. Id: NT5
  1518. Command: 0x81B914F1
  1519. Image16by16: IMGMAP@one@136_16_N
  1520. LabelText: STR@l_NoteTag_5
  1521. 6
  1522. name: Button
  1523. attrs
  1524. Id: NT6
  1525. Command: 0x81B914F1
  1526. Image16by16: IMGMAP@one@118_16_N
  1527. LabelText: STR@l_NoteTag_6
  1528. 7
  1529. name: Button
  1530. attrs
  1531. Id: NT7
  1532. Command: 0x81B914F1
  1533. Image16by16: IMGMAP@one@23_16_N
  1534. LabelText: STR@l_NoteTag_7
  1535. 8
  1536. name: Button
  1537. attrs
  1538. Id: NT8
  1539. Command: 0x81B914F1
  1540. Image16by16: IMGMAP@one@18_16_N
  1541. LabelText: STR@l_NoteTag_8
  1542. 9
  1543. name: Button
  1544. attrs
  1545. Id: NT9
  1546. Command: 0x81B914F1
  1547. Image16by16: IMGMAP@one@125_16_N
  1548. LabelText: STR@l_NoteTag_9
  1549. 10
  1550. name: Button
  1551. attrs
  1552. Id: NT10
  1553. Command: 0x81B914F1
  1554. Image16by16: IMGMAP@one@21_16_N
  1555. LabelText: STR@l_NoteTag_10
  1556. 11
  1557. name: Button
  1558. attrs
  1559. Id: NT11
  1560. Command: 0x81B914F1
  1561. Image16by16: IMGMAP@one@131_16_N
  1562. LabelText: STR@l_NoteTag_11
  1563. 12
  1564. name: Button
  1565. attrs
  1566. Id: NT12
  1567. Command: 0x81B914F1
  1568. Image16by16: IMGMAP@one@17_16_N
  1569. LabelText: STR@l_NoteTag_12
  1570. 13
  1571. name: Button
  1572. attrs
  1573. Id: NT13
  1574. Command: 0x81B914F1
  1575. Image16by16: IMGMAP@one@100_16_N
  1576. LabelText: STR@l_NoteTag_13
  1577. 14
  1578. name: Button
  1579. attrs
  1580. Id: NT14
  1581. Command: 0x81B914F1
  1582. Image16by16: IMGMAP@one@101_16_N
  1583. LabelText: STR@l_NoteTag_14
  1584. 15
  1585. name: Button
  1586. attrs
  1587. Id: NT15
  1588. Command: 0x81B914F1
  1589. Image16by16: IMGMAP@one@122_16_N
  1590. LabelText: STR@l_NoteTag_15
  1591. 16
  1592. name: Button
  1593. attrs
  1594. Id: NT16
  1595. Command: 0x81B914F1
  1596. Image16by16: IMGMAP@one@132_16_N
  1597. LabelText: STR@l_NoteTag_16
  1598. 17
  1599. name: Button
  1600. attrs
  1601. Id: NT17
  1602. Command: 0x81B914F1
  1603. Image16by16: IMGMAP@one@121_16_N
  1604. LabelText: STR@l_NoteTag_17
  1605. 18
  1606. name: Button
  1607. attrs
  1608. Id: NT18
  1609. Command: 0x81B914F1
  1610. Image16by16: IMGMAP@one@125_16_N
  1611. LabelText: STR@l_NoteTag_18
  1612. 19
  1613. name: FlyoutAnchor
  1614. attrs
  1615. Id: flyNoteTagsMore
  1616. Alt: STR@L_NoteTagsMore
  1617. Image16by16: IMGMAP@one@BlankButtonPS
  1618. ImageArrow: IMGMAP@one@SplitButtonArrow
  1619. LabelText: STR@L_NoteTagsMore
  1620. Command: 0x0316F274
  1621. TemplateAlias: button1
  1622. children
  1623. 0
  1624. name: Menu
  1625. attrs
  1626. Id: menuNoteTagMore
  1627. children
  1628. 0
  1629. name: MenuSection
  1630. attrs
  1631. Id: msNoteTagMore
  1632. DisplayMode: Menu16
  1633. children
  1634. 0
  1635. name: Controls
  1636. attrs
  1637. Id: ctrlNoteTagMore
  1638. children
  1639. 0
  1640. name: Button
  1641. attrs
  1642. Id: NT19
  1643. Command: 0x81B914F1
  1644. Image16by16: IMGMAP@one@24_16_N
  1645. LabelText: STR@l_NoteTag_19
  1646. 1
  1647. name: Button
  1648. attrs
  1649. Id: NT20
  1650. Command: 0x81B914F1
  1651. Image16by16: IMGMAP@one@94_16_M
  1652. LabelText: STR@l_NoteTag_20
  1653. 2
  1654. name: Button
  1655. attrs
  1656. Id: NT21
  1657. Command: 0x81B914F1
  1658. Image16by16: IMGMAP@one@94_16_M
  1659. LabelText: STR@l_NoteTag_21
  1660. 3
  1661. name: Button
  1662. attrs
  1663. Id: NT22
  1664. Command: 0x81B914F1
  1665. Image16by16: IMGMAP@one@95_16_M
  1666. LabelText: STR@l_NoteTag_22
  1667. 4
  1668. name: Button
  1669. attrs
  1670. Id: NT23
  1671. Command: 0x81B914F1
  1672. Image16by16: IMGMAP@one@106_16_N
  1673. LabelText: STR@l_NoteTag_23
  1674. 5
  1675. name: Button
  1676. attrs
  1677. Id: NT24
  1678. Command: 0x81B914F1
  1679. Image16by16: IMGMAP@one@12_16_M
  1680. LabelText: STR@l_NoteTag_24
  1681. 6
  1682. name: Button
  1683. attrs
  1684. Id: NT25
  1685. Command: 0x81B914F1
  1686. Image16by16: IMGMAP@one@12_16_M
  1687. LabelText: STR@l_NoteTag_25
  1688. 7
  1689. name: Button
  1690. attrs
  1691. Id: NT26
  1692. Command: 0x81B914F1
  1693. Image16by16: IMGMAP@one@28_16_M
  1694. LabelText: STR@l_NoteTag_26
  1695. 8
  1696. name: Button
  1697. attrs
  1698. Id: NT27
  1699. Command: 0x81B914F1
  1700. Image16by16: IMGMAP@one@71_16_M
  1701. LabelText: STR@l_NoteTag_27
  1702. 9
  1703. name: Button
  1704. attrs
  1705. Id: NT28
  1706. Command: 0x81B914F1
  1707. Image16by16: IMGMAP@one@8_16_M
  1708. LabelText: STR@l_NoteTag_28
  1709. 1
  1710. name: MenuSection
  1711. attrs
  1712. Id: msNoteTagCommands
  1713. DisplayMode: Menu16
  1714. children
  1715. 0
  1716. name: Controls
  1717. attrs
  1718. Id: ctrlNoteTagCommands
  1719. children
  1720. 0
  1721. name: Button
  1722. attrs
  1723. Id: buttonNoteTagRemoveAll
  1724. Command: 0x5C016681
  1725. Image16by16: IMGMAP@one@NoIconYetPS
  1726. LabelText: STR@L_NoteTagRemove
  1727. 4
  1728. name: Group
  1729. attrs
  1730. Id: grpSpelling
  1731. Description:
  1732. Title: STR@L_GroupProofing
  1733. Template: tmpOneButton
  1734. children
  1735. 0
  1736. name: Controls
  1737. attrs
  1738. Id: grpSpelling.Controls
  1739. children
  1740. 0
  1741. name: SplitButton
  1742. attrs
  1743. Id: sbSpelling
  1744. Alt: STR@L_NextSpellingError
  1745. LabelText: STR@L_NextSpellingError
  1746. Command: 0x9DBB85E9
  1747. CommandMenuOpen: 0x215688C3
  1748. CommandMenuClose: 0xB15EF301
  1749. Image32by32: IMGMAP@one@SpellingHH
  1750. ImageArrow: IMGMAP@one@SplitButtonArrow
  1751. TemplateAlias: button1
  1752. children
  1753. 0
  1754. name: Menu
  1755. attrs
  1756. Id: menuSpelling
  1757. children
  1758. 0
  1759. name: MenuSection
  1760. attrs
  1761. Id: msSpelling
  1762. DisplayMode: Menu16
  1763. children
  1764. 0
  1765. name: Controls
  1766. attrs
  1767. Id: msSpelling.Controls
  1768. children
  1769. 0
  1770. name: Button
  1771. attrs
  1772. Id: fseaNextSpellingError
  1773. Command: 0x9DBB85E9
  1774. Image16by16: IMGMAP@one@SpellingHS
  1775. LabelText: STR@L_NextSpellingError
  1776. 1
  1777. name: Button
  1778. attrs
  1779. Id: fseaSetLanguage
  1780. Command: 0x9842D690
  1781. Image16by16: IMGMAP@one@SetLanguagePS
  1782. LabelText: STR@L_SetLanguageMenu
  1783. 5
  1784. name: Group
  1785. attrs
  1786. Id: grpFeedback
  1787. Description:
  1788. Title: STR@L_Feedback
  1789. Template: tmpOneButton
  1790. children
  1791. 0
  1792. name: Controls
  1793. attrs
  1794. Id: grpFeedback.Controls
  1795. children
  1796. 0
  1797. name: Button
  1798. attrs
  1799. Id: buttonSurveyOfTheMonth
  1800. Command: 0x5142AA26
  1801. Image32by32: IMGMAP@one@CustomerFeedbackPH
  1802. LabelText: STR@L_GiveFeedback
  1803. Alt: STR@L_GiveFeedback
  1804. TemplateAlias: button1
  1805. 1
  1806. name: Tab
  1807. attrs
  1808. Id: tabInsert
  1809. Description:
  1810. Title: STR@L_TabInsert
  1811. children
  1812. 0
  1813. name: Scaling
  1814. attrs
  1815. Id: Insert.Scaling
  1816. children
  1817. 0
  1818. name: MaxSize
  1819. attrs
  1820. Id: grpInsertNotebook.Scaling.MaxSize
  1821. Sequence: 10
  1822. GroupId: grpNotebook
  1823. Size: Large
  1824. 1
  1825. name: MaxSize
  1826. attrs
  1827. Id: grpInsertTables.Scaling.MaxSize
  1828. Sequence: 20
  1829. GroupId: grpInsertTables
  1830. Size: Large
  1831. 2
  1832. name: MaxSize
  1833. attrs
  1834. Id: grpIllustrations.Scaling.MaxSize
  1835. Sequence: 30
  1836. GroupId: grpIllustrations
  1837. Size: Large
  1838. 3
  1839. name: MaxSize
  1840. attrs
  1841. Id: grpInsertLinks.Scaling.MaxSize
  1842. Sequence: 40
  1843. GroupId: grpInsertLinks
  1844. Size: Large
  1845. 1
  1846. name: Groups
  1847. attrs
  1848. Id: Insert.Groups
  1849. children
  1850. 0
  1851. name: Group
  1852. attrs
  1853. Id: grpNotebook
  1854. Description:
  1855. Title: STR@L_GroupNotebook
  1856. Template: tmpTwoButton
  1857. children
  1858. 0
  1859. name: Controls
  1860. attrs
  1861. Id: grpNotebook.Controls
  1862. children
  1863. 0
  1864. name: Button
  1865. attrs
  1866. Id: fseaNew
  1867. Command: 0x1F15EF8B
  1868. Image16by16: IMGMAP@one@NewHS
  1869. Image32by32: IMGMAP@one@NewHH
  1870. LabelText: STR@L_NewPage
  1871. TemplateAlias: button1
  1872. 1
  1873. name: Button
  1874. attrs
  1875. Id: fseaNewSection
  1876. Command: 0xA20EA835
  1877. Image16by16: IMGMAP@one@JotInsertSectionHS
  1878. Image32by32: IMGMAP@one@msotJotInsertSectionShortHH
  1879. LabelText: STR@L_NewSection
  1880. TemplateAlias: button2
  1881. 1
  1882. name: Group
  1883. attrs
  1884. Id: grpInsertTables
  1885. Description:
  1886. Title: STR@L_GroupTables
  1887. Template: tmpOneButton
  1888. children
  1889. 0
  1890. name: Controls
  1891. attrs
  1892. Id: InsertTable.Controls
  1893. children
  1894. 0
  1895. name: FlyoutAnchor
  1896. attrs
  1897. Id: flyInsertTable
  1898. Alt: STR@L_Table
  1899. Image32by32: IMGMAP@one@TablePH
  1900. Image16by16: IMGMAP@one@TablePS
  1901. ImageArrow: IMGMAP@one@SplitButtonArrow
  1902. LabelText: STR@L_Table
  1903. Command: 0xB271D79B
  1904. CommandMenuOpen: 0x215688C3
  1905. CommandMenuClose: 0xB15EF301
  1906. TemplateAlias: button1
  1907. children
  1908. 0
  1909. name: Menu
  1910. attrs
  1911. Id: menuInsertTable
  1912. children
  1913. 0
  1914. name: MenuSection
  1915. attrs
  1916. Id: msInserTable
  1917. Title: STR@L_MenuInsertTable
  1918. children
  1919. 0
  1920. name: Controls
  1921. attrs
  1922. Id: Insert.Table.Menu.Controls
  1923. children
  1924. 0
  1925. name: InsertTable
  1926. attrs
  1927. Id: insertTable
  1928. Alt: STR@L_MenuInsertTableGrid
  1929. Command: 0x3A21CA91
  1930. MenuSectionInitialTitle: STR@L_MenuInsertTable
  1931. MenuSectionTitle: STR@L_MenuInsertTableGrid
  1932. 2
  1933. name: Group
  1934. attrs
  1935. Id: grpIllustrations
  1936. Description:
  1937. Title: STR@L_GroupMedia
  1938. Template: tmpTwoButton
  1939. children
  1940. 0
  1941. name: Controls
  1942. attrs
  1943. children
  1944. 0
  1945. name: Button
  1946. attrs
  1947. Id: fseaInsertPicture
  1948. Command: 0x9F2ED567
  1949. Image32by32: IMGMAP@one@InsertPicturePH
  1950. LabelText: STR@L_Picture
  1951. TemplateAlias: button1
  1952. 1
  1953. name: Button
  1954. attrs
  1955. Id: fseaInsertClipart
  1956. Command: 0x91888286
  1957. Image32by32: IMGMAP@one@ClipArtHH
  1958. LabelText: STR@L_ClipArt
  1959. TemplateAlias: button2
  1960. 3
  1961. name: Group
  1962. attrs
  1963. Id: grpInsertLinks
  1964. Description:
  1965. Title: STR@L_GroupLinks
  1966. Template: tmpOneButton
  1967. children
  1968. 0
  1969. name: Controls
  1970. attrs
  1971. Id: ctrlInsert
  1972. children
  1973. 0
  1974. name: Button
  1975. attrs
  1976. Id: fseaInsertHyperlink
  1977. Command: 0xA19EE2D9
  1978. Image32by32: IMGMAP@one@WebInsertHyperlinkPH
  1979. Image16by16: IMGMAP@one@WebInsertHyperlinkPS
  1980. LabelText: STR@L_Hyperlink
  1981. TemplateAlias: button1
  1982. 2
  1983. name: Tab
  1984. attrs
  1985. Id: tabHistory
  1986. Description:
  1987. Title: STR@L_TabHistory
  1988. children
  1989. 0
  1990. name: Scaling
  1991. attrs
  1992. children
  1993. 0
  1994. name: MaxSize
  1995. attrs
  1996. Id: grpAuthors.Scaling.MaxSize
  1997. Sequence: 10
  1998. GroupId: grpAuthors
  1999. Size: Large
  2000. 1
  2001. name: MaxSize
  2002. attrs
  2003. Id: grpVersions.Scaling.MaxSize
  2004. Sequence: 20
  2005. GroupId: grpVersions
  2006. Size: Large
  2007. 1
  2008. name: Groups
  2009. attrs
  2010. children
  2011. 0
  2012. name: Group
  2013. attrs
  2014. Id: grpAuthors
  2015. Description:
  2016. Title: STR@L_GroupAuthors
  2017. Template: tmpOneButton
  2018. children
  2019. 0
  2020. name: Controls
  2021. attrs
  2022. children
  2023. 0
  2024. name: ToggleButton
  2025. attrs
  2026. Id: fsbcShowAuthorInfo
  2027. Alt: STR@L_ShowAuthors
  2028. Command: 0x8C3942AB
  2029. QueryCommand: 0x53A2D8A7
  2030. Image32by32: IMGMAP@one@ShowAuthorsHH
  2031. Image16by16: IMGMAP@one@NoIconYetPS
  2032. LabelText: STR@L_ShowAuthors
  2033. TemplateAlias: button1
  2034. 1
  2035. name: Group
  2036. attrs
  2037. Id: grpVersions
  2038. Description:
  2039. Title: STR@L_GroupVersions
  2040. Template: tmpOneButton
  2041. children
  2042. 0
  2043. name: Controls
  2044. attrs
  2045. children
  2046. 0
  2047. name: ToggleButton
  2048. attrs
  2049. Id: fsbcShowVersions
  2050. Alt: STR@L_ShowVersions
  2051. Command: 0xCCB576ED
  2052. QueryCommand: 0x3D948D71
  2053. Image32by32: IMGMAP@one@VersionsPH
  2054. LabelText: STR@L_ShowVersions
  2055. TemplateAlias: button1
  2056. 3
  2057. name: Tab
  2058. attrs
  2059. Id: tabView
  2060. Description:
  2061. Title: STR@L_TabView
  2062. children
  2063. 0
  2064. name: Scaling
  2065. attrs
  2066. children
  2067. 0
  2068. name: MaxSize
  2069. attrs
  2070. Id: grpViews.Scaling.MaxSize
  2071. Sequence: 10
  2072. GroupId: grpViews
  2073. Size: Large
  2074. 1
  2075. name: Groups
  2076. attrs
  2077. children
  2078. 0
  2079. name: Group
  2080. attrs
  2081. Id: grpViews
  2082. Description:
  2083. Title: STR@L_GroupNotebookViews
  2084. Template: tmpTwoButton
  2085. children
  2086. 0
  2087. name: Controls
  2088. attrs
  2089. children
  2090. 0
  2091. name: Button
  2092. attrs
  2093. Alt: STR@L_ReadView
  2094. Id: btnReadingMode
  2095. Command: 0xE56FA2A1
  2096. LabelText: STR@L_ReadView
  2097. Image32by32: IMGMAP@one@ReadingModePH
  2098. TemplateAlias: button1
  2099. 1
  2100. name: ToggleButton
  2101. attrs
  2102. Alt: STR@L_Edit
  2103. Id: btnEditOnWeb
  2104. Command: 0x864FCF9B
  2105. QueryCommand: 0x3EC7EEA9
  2106. LabelText: STR@L_Edit
  2107. Image32by32: IMGMAP@one@EditPH
  2108. TemplateAlias: button2
  2109. 1
  2110. name: ContextualTabs
  2111. attrs
  2112. Id: ContextualTabs
  2113. children
  2114. 0
  2115. name: ContextualGroup
  2116. attrs
  2117. Color: Yellow
  2118. ContextualGroupId: cgidTableGroup
  2119. Id: ContextualTabs.Tables
  2120. Command: 0x712E133C
  2121. Title: STR@L_TabTableTools
  2122. children
  2123. 0
  2124. name: Tab
  2125. attrs
  2126. Id: ContextualTabs.Tables.Layout
  2127. Description:
  2128. Title: STR@L_TabLayout
  2129. children
  2130. 0
  2131. name: Scaling
  2132. attrs
  2133. Id: ContextualTabs.Tables.Layout.Scaling
  2134. children
  2135. 0
  2136. name: MaxSize
  2137. attrs
  2138. Sequence: 0
  2139. GroupId: ContextualTabs.Tables.Layout.Select
  2140. Size: Large
  2141. 1
  2142. name: MaxSize
  2143. attrs
  2144. Sequence: 0
  2145. GroupId: ContextualTabs.Tables.Layout.Delete
  2146. Size: Large
  2147. 2
  2148. name: MaxSize
  2149. attrs
  2150. Sequence: 0
  2151. GroupId: ContextualTabs.Tables.Layout.Insert
  2152. Size: Large
  2153. 3
  2154. name: MaxSize
  2155. attrs
  2156. Sequence: 0
  2157. GroupId: ContextualTabs.Tables.Layout.Borders
  2158. Size: Large
  2159. 4
  2160. name: MaxSize
  2161. attrs
  2162. Sequence: 0
  2163. GroupId: ContextualTabs.Tables.Layout.Alignment
  2164. Size: Large
  2165. 5
  2166. name: Scale
  2167. attrs
  2168. Sequence: 10
  2169. GroupId: ContextualTabs.Tables.Layout.Select
  2170. Size: Medium
  2171. 6
  2172. name: Scale
  2173. attrs
  2174. Sequence: 15
  2175. GroupId: ContextualTabs.Tables.Layout.Alignment
  2176. Size: Medium
  2177. 7
  2178. name: Scale
  2179. attrs
  2180. Sequence: 20
  2181. GroupId: ContextualTabs.Tables.Layout.Delete
  2182. Size: Medium
  2183. 8
  2184. name: Scale
  2185. attrs
  2186. Sequence: 30
  2187. GroupId: ContextualTabs.Tables.Layout.Insert
  2188. Size: Medium
  2189. 9
  2190. name: Scale
  2191. attrs
  2192. Sequence: 40
  2193. GroupId: ContextualTabs.Tables.Layout.Select
  2194. Size: Small
  2195. 10
  2196. name: Scale
  2197. attrs
  2198. Sequence: 50
  2199. GroupId: ContextualTabs.Tables.Layout.Insert
  2200. Size: Small
  2201. 11
  2202. name: Scale
  2203. attrs
  2204. Sequence: 55
  2205. GroupId: ContextualTabs.Tables.Layout.Alignment
  2206. Size: Small
  2207. 12
  2208. name: Scale
  2209. attrs
  2210. Sequence: 60
  2211. GroupId: ContextualTabs.Tables.Layout.Select
  2212. Size: Collapsed
  2213. 13
  2214. name: Scale
  2215. attrs
  2216. Sequence: 70
  2217. GroupId: ContextualTabs.Tables.Layout.Delete
  2218. Size: Collapsed
  2219. 1
  2220. name: Groups
  2221. attrs
  2222. Id: ContextualTabs.Tables.Layout.Groups
  2223. children
  2224. 0
  2225. name: Group
  2226. attrs
  2227. Id: ContextualTabs.Tables.Layout.Select
  2228. Description:
  2229. Title: STR@L_GroupSelect
  2230. Template: tmpFourButton
  2231. children
  2232. 0
  2233. name: Controls
  2234. attrs
  2235. Id: ContextualTabs.Tables.Layout.Select.Controls
  2236. children
  2237. 0
  2238. name: Button
  2239. attrs
  2240. Id: btnSelectTable
  2241. Command: 0x8980B8D6
  2242. Image32by32: IMGMAP@one@TableSelectTablePH
  2243. Image16by16: IMGMAP@one@TableSelectTablePS
  2244. LabelText: STR@L_SelectTable
  2245. TemplateAlias: button1
  2246. 1
  2247. name: Button
  2248. attrs
  2249. Id: btnSelectColumn
  2250. Command: 0x8B95D5D4
  2251. Image32by32: IMGMAP@one@TableSelectColumnPH
  2252. Image16by16: IMGMAP@one@TableSelectColumnPS
  2253. LabelText: STR@L_SelectColumn
  2254. TemplateAlias: button2
  2255. 2
  2256. name: Button
  2257. attrs
  2258. Id: btnSelectRow
  2259. Command: 0xD117E3D2
  2260. Image32by32: IMGMAP@one@TableSelectRowPH
  2261. Image16by16: IMGMAP@one@TableSelectRowPS
  2262. LabelText: STR@L_SelectRow
  2263. TemplateAlias: button3
  2264. 3
  2265. name: Button
  2266. attrs
  2267. Id: btnSelectCell
  2268. Command: 0x06A11EAE
  2269. Image32by32: IMGMAP@one@TableSelectCellPH
  2270. Image16by16: IMGMAP@one@TableSelectCellPS
  2271. LabelText: STR@L_SelectCell
  2272. TemplateAlias: button4
  2273. 4
  2274. name: FlyoutAnchor
  2275. attrs
  2276. Alt: STR@L_Select
  2277. Id: idTableSelect
  2278. Image32by32: IMGMAP@one@TableSelectTablePH
  2279. LabelText: STR@L_Select
  2280. ImageArrow: IMGMAP@one@SplitButtonArrow
  2281. TemplateAlias: flyout
  2282. children
  2283. 0
  2284. name: Menu
  2285. attrs
  2286. Id: menuTableSelect
  2287. children
  2288. 0
  2289. name: MenuSection
  2290. attrs
  2291. Id: msTableSelect
  2292. DisplayMode: Menu16
  2293. children
  2294. 0
  2295. name: Controls
  2296. attrs
  2297. Id: ContextualTabs.Tables.Layout.SelectMenu.Controls
  2298. children
  2299. 0
  2300. name: Button
  2301. attrs
  2302. Id: btnSelectTable
  2303. Command: 0x8980B8D6
  2304. Image32by32: IMGMAP@one@TableSelectTablePH
  2305. Image16by16: IMGMAP@one@TableSelectTablePS
  2306. LabelText: STR@L_SelectTable
  2307. 1
  2308. name: Button
  2309. attrs
  2310. Id: btnSelectColumn
  2311. Command: 0x8B95D5D4
  2312. Image32by32: IMGMAP@one@TableSelectColumnPH
  2313. Image16by16: IMGMAP@one@TableSelectColumnPS
  2314. LabelText: STR@L_SelectColumn
  2315. 2
  2316. name: Button
  2317. attrs
  2318. Id: btnSelectRow
  2319. Command: 0xD117E3D2
  2320. Image32by32: IMGMAP@one@TableSelectRowPH
  2321. Image16by16: IMGMAP@one@TableSelectRowPS
  2322. LabelText: STR@L_SelectRow
  2323. 3
  2324. name: Button
  2325. attrs
  2326. Id: btnSelectCell
  2327. Command: 0x06A11EAE
  2328. Image32by32: IMGMAP@one@TableSelectCellPH
  2329. Image16by16: IMGMAP@one@TableSelectCellPS
  2330. LabelText: STR@L_SelectCell
  2331. 1
  2332. name: Group
  2333. attrs
  2334. Id: ContextualTabs.Tables.Layout.Delete
  2335. Description:
  2336. Title: STR@L_GroupDelete
  2337. Template: tmpThreeButton
  2338. children
  2339. 0
  2340. name: Controls
  2341. attrs
  2342. Id: ContextualTabs.Tables.Layout.Delete.Controls
  2343. children
  2344. 0
  2345. name: Button
  2346. attrs
  2347. Id: btnTableDelete
  2348. Command: 0x6C7624AB
  2349. Image32by32: IMGMAP@one@TableDeleteTablePH
  2350. Image16by16: IMGMAP@one@TableDeleteTablePS
  2351. LabelText: STR@L_DeleteTable
  2352. TemplateAlias: button1
  2353. 1
  2354. name: Button
  2355. attrs
  2356. Id: btnColumnDelete
  2357. Command: 0xB1CE5D9F
  2358. Image32by32: IMGMAP@one@TableDeleteColumnPH
  2359. Image16by16: IMGMAP@one@TableDeleteColumnPS
  2360. LabelText: STR@L_DeleteColumn
  2361. TemplateAlias: button2
  2362. 2
  2363. name: Button
  2364. attrs
  2365. Id: btnRowDelete
  2366. Command: 0x518E0B87
  2367. Image32by32: IMGMAP@one@TableDeleteRowPH
  2368. Image16by16: IMGMAP@one@TableDeleteRowPS
  2369. LabelText: STR@L_DeleteRow
  2370. TemplateAlias: button3
  2371. 3
  2372. name: FlyoutAnchor
  2373. attrs
  2374. Alt: STR@L_Delete
  2375. Id: idTableDelete
  2376. Image32by32: IMGMAP@one@TableDeleteTablePH
  2377. LabelText: STR@L_Delete
  2378. ImageArrow: IMGMAP@one@SplitButtonArrow
  2379. TemplateAlias: flyout
  2380. children
  2381. 0
  2382. name: Menu
  2383. attrs
  2384. Id: menuTableDelete
  2385. children
  2386. 0
  2387. name: MenuSection
  2388. attrs
  2389. Id: msTableDelete
  2390. DisplayMode: Menu16
  2391. children
  2392. 0
  2393. name: Controls
  2394. attrs
  2395. Id: ContextualTabs.Tables.Layout.DeleteMenu.Controls
  2396. children
  2397. 0
  2398. name: Button
  2399. attrs
  2400. Id: btnTableDelete
  2401. Command: 0x6C7624AB
  2402. Image32by32: IMGMAP@one@TableDeleteTablePH
  2403. Image16by16: IMGMAP@one@TableDeleteTablePS
  2404. LabelText: STR@L_DeleteTable
  2405. 1
  2406. name: Button
  2407. attrs
  2408. Id: btnColumnDelete
  2409. Command: 0xB1CE5D9F
  2410. Image32by32: IMGMAP@one@TableDeleteColumnPH
  2411. Image16by16: IMGMAP@one@TableDeleteColumnPS
  2412. LabelText: STR@L_DeleteColumn
  2413. 2
  2414. name: Button
  2415. attrs
  2416. Id: btnRowDelete
  2417. Command: 0x518E0B87
  2418. Image32by32: IMGMAP@one@TableDeleteRowPH
  2419. Image16by16: IMGMAP@one@TableDeleteRowPS
  2420. LabelText: STR@L_DeleteRow
  2421. 2
  2422. name: Group
  2423. attrs
  2424. Id: ContextualTabs.Tables.Layout.Insert
  2425. Description:
  2426. Title: STR@L_GroupInsert
  2427. Template: tmpFourButton
  2428. children
  2429. 0
  2430. name: Controls
  2431. attrs
  2432. Id: ContextualTabs.Tables.Layout.Insert.Controls
  2433. children
  2434. 0
  2435. name: Button
  2436. attrs
  2437. Id: btnInsertRowAbove
  2438. Command: 0x8138CF12
  2439. Image32by32: IMGMAP@one@TableInsertRowAbovePH
  2440. Image16by16: IMGMAP@one@TableInsertRowAbovePS
  2441. LabelText: STR@L_InsertAbove
  2442. TemplateAlias: button1
  2443. 1
  2444. name: Button
  2445. attrs
  2446. Id: btnInsertRowBelow
  2447. Command: 0xDD172B5E
  2448. Image32by32: IMGMAP@one@TableInsertRowBelowPH
  2449. Image16by16: IMGMAP@one@TableInsertRowBelowPS
  2450. LabelText: STR@L_InsertBelow
  2451. TemplateAlias: button2
  2452. 2
  2453. name: Button
  2454. attrs
  2455. Id: btnInsertColumnLeft
  2456. Command: 0x3C041B80
  2457. Image32by32: IMGMAP@one@TableInsertColumnLeftPH
  2458. Image16by16: IMGMAP@one@TableInsertColumnLeftPS
  2459. LabelText: STR@L_InsertLeft
  2460. TemplateAlias: button3
  2461. 3
  2462. name: Button
  2463. attrs
  2464. Id: btnInsertColumnRight
  2465. Command: 0x6773C219
  2466. Image32by32: IMGMAP@one@TableInsertColumnRightPH
  2467. Image16by16: IMGMAP@one@TableInsertColumnRightPS
  2468. LabelText: STR@L_InsertRight
  2469. TemplateAlias: button4
  2470. 3
  2471. name: Group
  2472. attrs
  2473. Id: ContextualTabs.Tables.Layout.Borders
  2474. Description:
  2475. Title: STR@L_GroupBorders
  2476. Template: tmpOneButton
  2477. children
  2478. 0
  2479. name: Controls
  2480. attrs
  2481. Id: ContextualTabs.Tables.Layout.Borders.Controls
  2482. children
  2483. 0
  2484. name: ToggleButton
  2485. attrs
  2486. Id: btnHideBorders
  2487. Command: 0x6C020651
  2488. QueryCommand: 0x0B155E1B
  2489. Image32by32: IMGMAP@one@TableHideBordersPH
  2490. LabelText: STR@L_HideBorders
  2491. Alt: STR@L_HideBorders
  2492. TemplateAlias: button1
  2493. 4
  2494. name: Group
  2495. attrs
  2496. Id: ContextualTabs.Tables.Layout.Alignment
  2497. Description:
  2498. Title: STR@L_GroupAlignment
  2499. Template: tmpThreeButton
  2500. children
  2501. 0
  2502. name: Controls
  2503. attrs
  2504. Id: ContextualTabs.Tables.Layout.Alignment.Controls
  2505. children
  2506. 0
  2507. name: ToggleButton
  2508. attrs
  2509. Id: LeftJustify
  2510. Command: 0x6F4BD314
  2511. QueryCommand: 0xE25D77A3
  2512. Image16by16: IMGMAP@one@LeftJustifyPS
  2513. Image32by32: IMGMAP@one@NoIconYetPH
  2514. LabelText: STR@L_AlignLeft
  2515. Alt: STR@L_AlignTextLeft
  2516. TemplateAlias: button1
  2517. 1
  2518. name: ToggleButton
  2519. attrs
  2520. Id: CenterJustify
  2521. Command: 0xC6A376F8
  2522. QueryCommand: 0xC27E85BB
  2523. Image16by16: IMGMAP@one@CenteredPS
  2524. Image32by32: IMGMAP@one@NoIconYetPH
  2525. LabelText: STR@L_JustifyCenter
  2526. Alt: STR@L_JustifyCenter
  2527. TemplateAlias: button2
  2528. 2
  2529. name: ToggleButton
  2530. attrs
  2531. Id: RightJustify
  2532. Command: 0xD59F0217
  2533. QueryCommand: 0x776E8734
  2534. Image16by16: IMGMAP@one@RightJustifyPS
  2535. Image32by32: IMGMAP@one@NoIconYetPH
  2536. LabelText: STR@L_AlignRight
  2537. Alt: STR@L_AlignTextRight
  2538. TemplateAlias: button3
  2539. 1
  2540. name: ContextualGroup
  2541. attrs
  2542. Color: Magenta
  2543. ContextualGroupId: cgidPictureToolsGroup
  2544. Id: cgrpPictureToolsGroup
  2545. Command: 0xD2057E46
  2546. Title: STR@L_TabPictureTools
  2547. children
  2548. 0
  2549. name: Tab
  2550. attrs
  2551. Id: ctabPictureTools
  2552. Description:
  2553. Title: STR@L_TabFormatPicture
  2554. children
  2555. 0
  2556. name: Scaling
  2557. attrs
  2558. children
  2559. 0
  2560. name: MaxSize
  2561. attrs
  2562. Id: grpImageText.Scaling.MaxSize
  2563. Sequence: 10
  2564. GroupId: grpImageText
  2565. Size: Large
  2566. 1
  2567. name: MaxSize
  2568. attrs
  2569. Id: grpImageSize.Scaling.MaxSize
  2570. Sequence: 20
  2571. GroupId: grpImageSize
  2572. Size: Large
  2573. 1
  2574. name: Groups
  2575. attrs
  2576. children
  2577. 0
  2578. name: Group
  2579. attrs
  2580. Id: grpImageText
  2581. Description:
  2582. Title: STR@L_GroupImageText
  2583. Template: tmpOneButton
  2584. children
  2585. 0
  2586. name: Controls
  2587. attrs
  2588. children
  2589. 0
  2590. name: Button
  2591. attrs
  2592. Id: btnAltText
  2593. Command: 0x288DC156
  2594. Image32by32: IMGMAP@one@NoIconYetPH
  2595. Image16by16: IMGMAP@one@NoIconYetPS
  2596. LabelText: STR@L_AltText
  2597. TemplateAlias: button1
  2598. 1
  2599. name: Group
  2600. attrs
  2601. Id: grpImageSize
  2602. Description:
  2603. Title: STR@L_GroupImageSize
  2604. Template: tmpImageSize
  2605. children
  2606. 0
  2607. name: Controls
  2608. attrs
  2609. children
  2610. 0
  2611. name: Button
  2612. attrs
  2613. Id: btnImageGrow
  2614. Command: 0x464C6D12
  2615. Image16by16: IMGMAP@one@NoIconYetPS
  2616. LabelText: STR@L_Grow
  2617. TemplateAlias: grow
  2618. 1
  2619. name: Button
  2620. attrs
  2621. Id: btnImageShrink
  2622. Command: 0xF571A3C0
  2623. Image16by16: IMGMAP@one@NoIconYetPS
  2624. LabelText: STR@L_Shrink
  2625. TemplateAlias: shrink
  2626. 2
  2627. name: Label
  2628. attrs
  2629. Id: lblScale
  2630. LabelText: STR@L_PictureScaleLabel
  2631. TemplateAlias: scaleLabel
  2632. 3
  2633. name: Spinner
  2634. attrs
  2635. Id: spnSize
  2636. DefaultUnit: percent
  2637. DefaultValue: 100
  2638. ImageUpArrow: IMGMAP@one@PickerArrowUp
  2639. AltUpArrow: STR@L_More
  2640. ImageDownArrow: IMGMAP@one@PickerArrow
  2641. AltDownArrow: STR@L_Less
  2642. AccelerationInterval: 125
  2643. MultiplierInterval: 2000
  2644. Command: 0x50D14FC5
  2645. QueryCommand: 0x3276C7D7
  2646. TemplateAlias: spinner
  2647. children
  2648. 0
  2649. name: Unit
  2650. attrs
  2651. Name: percent
  2652. MinimumValue: .1
  2653. MaximumValue: 128000
  2654. DecimalDigits: 1
  2655. Interval: 1
  2656. children
  2657. 0
  2658. name: UnitAbbreviation
  2659. attrs
  2660. Value: %
  2661. 3
  2662. name: Templates
  2663. attrs
  2664. children
  2665. 0
  2666. name: RibbonTemplates
  2667. attrs
  2668. Id: OneNote.Templates
  2669. children
  2670. 0
  2671. name: GroupTemplate
  2672. attrs
  2673. Id: tmpOneButton
  2674. children
  2675. 0
  2676. name: Layout
  2677. attrs
  2678. Title: Large
  2679. children
  2680. 0
  2681. name: Section
  2682. attrs
  2683. Type: OneRow
  2684. children
  2685. 0
  2686. name: Row
  2687. attrs
  2688. children
  2689. 0
  2690. name: ControlRef
  2691. attrs
  2692. TemplateAlias: button1
  2693. DisplayMode: Large
  2694. 1
  2695. name: GroupTemplate
  2696. attrs
  2697. Id: tmpTwoButton
  2698. children
  2699. 0
  2700. name: Layout
  2701. attrs
  2702. Title: Large
  2703. children
  2704. 0
  2705. name: Section
  2706. attrs
  2707. Type: OneRow
  2708. children
  2709. 0
  2710. name: Row
  2711. attrs
  2712. children
  2713. 0
  2714. name: ControlRef
  2715. attrs
  2716. TemplateAlias: button1
  2717. DisplayMode: Large
  2718. 1
  2719. name: ControlRef
  2720. attrs
  2721. TemplateAlias: button2
  2722. DisplayMode: Large
  2723. 2
  2724. name: GroupTemplate
  2725. attrs
  2726. Id: tmpThreeButton
  2727. children
  2728. 0
  2729. name: Layout
  2730. attrs
  2731. Title: Large
  2732. children
  2733. 0
  2734. name: Section
  2735. attrs
  2736. Type: OneRow
  2737. children
  2738. 0
  2739. name: Row
  2740. attrs
  2741. children
  2742. 0
  2743. name: ControlRef
  2744. attrs
  2745. TemplateAlias: button1
  2746. DisplayMode: Large
  2747. 1
  2748. name: ControlRef
  2749. attrs
  2750. TemplateAlias: button2
  2751. DisplayMode: Large
  2752. 2
  2753. name: ControlRef
  2754. attrs
  2755. TemplateAlias: button3
  2756. DisplayMode: Large
  2757. 1
  2758. name: Layout
  2759. attrs
  2760. Title: Medium
  2761. children
  2762. 0
  2763. name: Section
  2764. attrs
  2765. Type: ThreeRow
  2766. children
  2767. 0
  2768. name: Row
  2769. attrs
  2770. children
  2771. 0
  2772. name: ControlRef
  2773. attrs
  2774. TemplateAlias: button1
  2775. DisplayMode: Medium
  2776. 1
  2777. name: Row
  2778. attrs
  2779. children
  2780. 0
  2781. name: ControlRef
  2782. attrs
  2783. TemplateAlias: button2
  2784. DisplayMode: Medium
  2785. 2
  2786. name: Row
  2787. attrs
  2788. children
  2789. 0
  2790. name: ControlRef
  2791. attrs
  2792. TemplateAlias: button3
  2793. DisplayMode: Medium
  2794. 2
  2795. name: Layout
  2796. attrs
  2797. Title: Small
  2798. children
  2799. 0
  2800. name: Section
  2801. attrs
  2802. Type: ThreeRow
  2803. children
  2804. 0
  2805. name: Row
  2806. attrs
  2807. children
  2808. 0
  2809. name: ControlRef
  2810. attrs
  2811. TemplateAlias: button1
  2812. DisplayMode: Small
  2813. 1
  2814. name: Row
  2815. attrs
  2816. children
  2817. 0
  2818. name: ControlRef
  2819. attrs
  2820. TemplateAlias: button2
  2821. DisplayMode: Small
  2822. 2
  2823. name: Row
  2824. attrs
  2825. children
  2826. 0
  2827. name: ControlRef
  2828. attrs
  2829. TemplateAlias: button3
  2830. DisplayMode: Small
  2831. 3
  2832. name: Layout
  2833. attrs
  2834. Title: Collapsed
  2835. children
  2836. 0
  2837. name: Section
  2838. attrs
  2839. Type: OneRow
  2840. children
  2841. 0
  2842. name: Row
  2843. attrs
  2844. children
  2845. 0
  2846. name: ControlRef
  2847. attrs
  2848. TemplateAlias: flyout
  2849. DisplayMode: Large
  2850. 3
  2851. name: GroupTemplate
  2852. attrs
  2853. Id: tmpFourButton
  2854. children
  2855. 0
  2856. name: Layout
  2857. attrs
  2858. Title: Large
  2859. children
  2860. 0
  2861. name: Section
  2862. attrs
  2863. Type: OneRow
  2864. children
  2865. 0
  2866. name: Row
  2867. attrs
  2868. children
  2869. 0
  2870. name: ControlRef
  2871. attrs
  2872. TemplateAlias: button1
  2873. DisplayMode: Large
  2874. 1
  2875. name: ControlRef
  2876. attrs
  2877. TemplateAlias: button2
  2878. DisplayMode: Large
  2879. 2
  2880. name: ControlRef
  2881. attrs
  2882. TemplateAlias: button3
  2883. DisplayMode: Large
  2884. 3
  2885. name: ControlRef
  2886. attrs
  2887. TemplateAlias: button4
  2888. DisplayMode: Large
  2889. 1
  2890. name: Layout
  2891. attrs
  2892. Title: Medium
  2893. children
  2894. 0
  2895. name: Section
  2896. attrs
  2897. Type: OneRow
  2898. children
  2899. 0
  2900. name: Row
  2901. attrs
  2902. children
  2903. 0
  2904. name: ControlRef
  2905. attrs
  2906. TemplateAlias: button1
  2907. DisplayMode: Large
  2908. 1
  2909. name: Section
  2910. attrs
  2911. Type: ThreeRow
  2912. children
  2913. 0
  2914. name: Row
  2915. attrs
  2916. children
  2917. 0
  2918. name: ControlRef
  2919. attrs
  2920. TemplateAlias: button2
  2921. DisplayMode: Medium
  2922. 1
  2923. name: Row
  2924. attrs
  2925. children
  2926. 0
  2927. name: ControlRef
  2928. attrs
  2929. TemplateAlias: button3
  2930. DisplayMode: Medium
  2931. 2
  2932. name: Row
  2933. attrs
  2934. children
  2935. 0
  2936. name: ControlRef
  2937. attrs
  2938. TemplateAlias: button4
  2939. DisplayMode: Medium
  2940. 2
  2941. name: Layout
  2942. attrs
  2943. Title: Small
  2944. children
  2945. 0
  2946. name: Section
  2947. attrs
  2948. Type: OneRow
  2949. children
  2950. 0
  2951. name: Row
  2952. attrs
  2953. children
  2954. 0
  2955. name: ControlRef
  2956. attrs
  2957. TemplateAlias: button1
  2958. DisplayMode: Large
  2959. 1
  2960. name: Section
  2961. attrs
  2962. Type: ThreeRow
  2963. children
  2964. 0
  2965. name: Row
  2966. attrs
  2967. children
  2968. 0
  2969. name: ControlRef
  2970. attrs
  2971. TemplateAlias: button2
  2972. DisplayMode: Small
  2973. 1
  2974. name: Row
  2975. attrs
  2976. children
  2977. 0
  2978. name: ControlRef
  2979. attrs
  2980. TemplateAlias: button3
  2981. DisplayMode: Small
  2982. 2
  2983. name: Row
  2984. attrs
  2985. children
  2986. 0
  2987. name: ControlRef
  2988. attrs
  2989. TemplateAlias: button4
  2990. DisplayMode: Small
  2991. 3
  2992. name: Layout
  2993. attrs
  2994. Title: Collapsed
  2995. children
  2996. 0
  2997. name: Section
  2998. attrs
  2999. Type: OneRow
  3000. children
  3001. 0
  3002. name: Row
  3003. attrs
  3004. children
  3005. 0
  3006. name: ControlRef
  3007. attrs
  3008. TemplateAlias: flyout
  3009. DisplayMode: Large
  3010. 4
  3011. name: GroupTemplate
  3012. attrs
  3013. Id: tmpFiveButton
  3014. children
  3015. 0
  3016. name: Layout
  3017. attrs
  3018. Title: Large
  3019. children
  3020. 0
  3021. name: Section
  3022. attrs
  3023. Type: OneRow
  3024. children
  3025. 0
  3026. name: Row
  3027. attrs
  3028. children
  3029. 0
  3030. name: ControlRef
  3031. attrs
  3032. TemplateAlias: button1
  3033. DisplayMode: Large
  3034. 1
  3035. name: ControlRef
  3036. attrs
  3037. TemplateAlias: button2
  3038. DisplayMode: Large
  3039. 2
  3040. name: ControlRef
  3041. attrs
  3042. TemplateAlias: button3
  3043. DisplayMode: Large
  3044. 3
  3045. name: ControlRef
  3046. attrs
  3047. TemplateAlias: button4
  3048. DisplayMode: Large
  3049. 4
  3050. name: ControlRef
  3051. attrs
  3052. TemplateAlias: button5
  3053. DisplayMode: Large
  3054. 5
  3055. name: GroupTemplate
  3056. attrs
  3057. Id: tmpClipboard
  3058. children
  3059. 0
  3060. name: Layout
  3061. attrs
  3062. Title: LargeMedium
  3063. children
  3064. 0
  3065. name: Section
  3066. attrs
  3067. Type: OneRow
  3068. children
  3069. 0
  3070. name: Row
  3071. attrs
  3072. children
  3073. 0
  3074. name: ControlRef
  3075. attrs
  3076. TemplateAlias: paste
  3077. DisplayMode: Large
  3078. 1
  3079. name: Section
  3080. attrs
  3081. Type: TwoRow
  3082. children
  3083. 0
  3084. name: Row
  3085. attrs
  3086. children
  3087. 0
  3088. name: ControlRef
  3089. attrs
  3090. TemplateAlias: cut
  3091. DisplayMode: Medium
  3092. 1
  3093. name: Row
  3094. attrs
  3095. children
  3096. 0
  3097. name: ControlRef
  3098. attrs
  3099. TemplateAlias: copy
  3100. DisplayMode: Medium
  3101. 1
  3102. name: Layout
  3103. attrs
  3104. Title: LargeSmall
  3105. children
  3106. 0
  3107. name: Section
  3108. attrs
  3109. Type: OneRow
  3110. children
  3111. 0
  3112. name: Row
  3113. attrs
  3114. children
  3115. 0
  3116. name: ControlRef
  3117. attrs
  3118. TemplateAlias: paste
  3119. DisplayMode: Large
  3120. 1
  3121. name: Section
  3122. attrs
  3123. Type: TwoRow
  3124. children
  3125. 0
  3126. name: Row
  3127. attrs
  3128. children
  3129. 0
  3130. name: ControlRef
  3131. attrs
  3132. TemplateAlias: cut
  3133. DisplayMode: Small
  3134. 1
  3135. name: Row
  3136. attrs
  3137. children
  3138. 0
  3139. name: ControlRef
  3140. attrs
  3141. TemplateAlias: copy
  3142. DisplayMode: Small
  3143. 6
  3144. name: GroupTemplate
  3145. attrs
  3146. Id: tmpBasicText
  3147. children
  3148. 0
  3149. name: Layout
  3150. attrs
  3151. Title: Large
  3152. children
  3153. 0
  3154. name: Section
  3155. attrs
  3156. Type: TwoRow
  3157. children
  3158. 0
  3159. name: Row
  3160. attrs
  3161. children
  3162. 0
  3163. name: ControlRef
  3164. attrs
  3165. TemplateAlias: font
  3166. DisplayMode: Medium
  3167. 1
  3168. name: ControlRef
  3169. attrs
  3170. TemplateAlias: fontSize
  3171. DisplayMode: Medium
  3172. 2
  3173. name: ControlRef
  3174. attrs
  3175. TemplateAlias: bullets
  3176. DisplayMode: Small
  3177. 3
  3178. name: ControlRef
  3179. attrs
  3180. TemplateAlias: numbering
  3181. DisplayMode: Small
  3182. 4
  3183. name: ControlRef
  3184. attrs
  3185. TemplateAlias: clearformat
  3186. DisplayMode: Small
  3187. 1
  3188. name: Row
  3189. attrs
  3190. children
  3191. 0
  3192. name: ControlRef
  3193. attrs
  3194. TemplateAlias: bold
  3195. DisplayMode: Small
  3196. 1
  3197. name: ControlRef
  3198. attrs
  3199. TemplateAlias: italic
  3200. DisplayMode: Small
  3201. 2
  3202. name: ControlRef
  3203. attrs
  3204. TemplateAlias: underline
  3205. DisplayMode: Small
  3206. 3
  3207. name: ControlRef
  3208. attrs
  3209. TemplateAlias: strikethrough
  3210. DisplayMode: Small
  3211. 4
  3212. name: ControlRef
  3213. attrs
  3214. TemplateAlias: subscript
  3215. DisplayMode: Small
  3216. 5
  3217. name: ControlRef
  3218. attrs
  3219. TemplateAlias: fontBackgroundColor
  3220. DisplayMode: Small
  3221. 6
  3222. name: ControlRef
  3223. attrs
  3224. TemplateAlias: fontColor
  3225. DisplayMode: Small
  3226. 7
  3227. name: ControlRef
  3228. attrs
  3229. TemplateAlias: outdent
  3230. DisplayMode: Small
  3231. 8
  3232. name: ControlRef
  3233. attrs
  3234. TemplateAlias: indent
  3235. DisplayMode: Small
  3236. 9
  3237. name: ControlRef
  3238. attrs
  3239. TemplateAlias: alignment
  3240. DisplayMode: Small
  3241. 7
  3242. name: GroupTemplate
  3243. attrs
  3244. Id: tmpImageSize
  3245. children
  3246. 0
  3247. name: Layout
  3248. attrs
  3249. Title: Large
  3250. children
  3251. 0
  3252. name: Section
  3253. attrs
  3254. Type: TwoRow
  3255. children
  3256. 0
  3257. name: Row
  3258. attrs
  3259. children
  3260. 0
  3261. name: ControlRef
  3262. attrs
  3263. TemplateAlias: grow
  3264. DisplayMode: Medium
  3265. 1
  3266. name: Row
  3267. attrs
  3268. children
  3269. 0
  3270. name: ControlRef
  3271. attrs
  3272. TemplateAlias: shrink
  3273. DisplayMode: Medium
  3274. 1
  3275. name: Section
  3276. attrs
  3277. Type: Divider
  3278. 2
  3279. name: Section
  3280. attrs
  3281. Type: OneRow
  3282. children
  3283. 0
  3284. name: Row
  3285. attrs
  3286. children
  3287. 0
  3288. name: ControlRef
  3289. attrs
  3290. TemplateAlias: scaleLabel
  3291. DisplayMode: Medium
  3292. 1
  3293. name: ControlRef
  3294. attrs
  3295. TemplateAlias: spinner
  3296. DisplayMode: Medium
  3297. 8
  3298. name: GroupTemplate
  3299. attrs
  3300. Id: tmpStyles
  3301. children
  3302. 0
  3303. name: Layout
  3304. attrs
  3305. Title: 5style
  3306. children
  3307. 0
  3308. name: Section
  3309. attrs
  3310. Type: OneRow
  3311. children
  3312. 0
  3313. name: Row
  3314. attrs
  3315. children
  3316. 0
  3317. name: ControlRef
  3318. attrs
  3319. TemplateAlias: preview1
  3320. DisplayMode: Default
  3321. 1
  3322. name: ControlRef
  3323. attrs
  3324. TemplateAlias: preview2
  3325. DisplayMode: Default
  3326. 2
  3327. name: ControlRef
  3328. attrs
  3329. TemplateAlias: preview3
  3330. DisplayMode: Default
  3331. 3
  3332. name: ControlRef
  3333. attrs
  3334. TemplateAlias: preview4
  3335. DisplayMode: Default
  3336. 4
  3337. name: ControlRef
  3338. attrs
  3339. TemplateAlias: preview5
  3340. DisplayMode: Default
  3341. 5
  3342. name: ControlRef
  3343. attrs
  3344. TemplateAlias: morestyles
  3345. DisplayMode: Large
  3346. 1
  3347. name: Layout
  3348. attrs
  3349. Title: 4style
  3350. children
  3351. 0
  3352. name: Section
  3353. attrs
  3354. Type: OneRow
  3355. children
  3356. 0
  3357. name: Row
  3358. attrs
  3359. children
  3360. 0
  3361. name: ControlRef
  3362. attrs
  3363. TemplateAlias: preview1
  3364. DisplayMode: Default
  3365. 1
  3366. name: ControlRef
  3367. attrs
  3368. TemplateAlias: preview2
  3369. DisplayMode: Default
  3370. 2
  3371. name: ControlRef
  3372. attrs
  3373. TemplateAlias: preview3
  3374. DisplayMode: Default
  3375. 3
  3376. name: ControlRef
  3377. attrs
  3378. TemplateAlias: preview4
  3379. DisplayMode: Default
  3380. 4
  3381. name: ControlRef
  3382. attrs
  3383. TemplateAlias: morestyles
  3384. DisplayMode: Large
  3385. 2
  3386. name: Layout
  3387. attrs
  3388. Title: 3style
  3389. children
  3390. 0
  3391. name: Section
  3392. attrs
  3393. Type: OneRow
  3394. children
  3395. 0
  3396. name: Row
  3397. attrs
  3398. children
  3399. 0
  3400. name: ControlRef
  3401. attrs
  3402. TemplateAlias: preview1
  3403. DisplayMode: Default
  3404. 1
  3405. name: ControlRef
  3406. attrs
  3407. TemplateAlias: preview2
  3408. DisplayMode: Default
  3409. 2
  3410. name: ControlRef
  3411. attrs
  3412. TemplateAlias: preview3
  3413. DisplayMode: Default
  3414. 3
  3415. name: ControlRef
  3416. attrs
  3417. TemplateAlias: morestyles
  3418. DisplayMode: Large
  3419. 3
  3420. name: Layout
  3421. attrs
  3422. Title: MoreOnly
  3423. children
  3424. 0
  3425. name: Section
  3426. attrs
  3427. Type: OneRow
  3428. children
  3429. 0
  3430. name: Row
  3431. attrs
  3432. children
  3433. 0
  3434. name: ControlRef
  3435. attrs
  3436. TemplateAlias: morestyles
  3437. DisplayMode: Large