| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438 |
- OneNoteRibbonData
- name: CommandUI
- attrs
- xmlns: http://schemas.microsoft.com/sharepoint/
- children
- 0
- name: QAT
- attrs
- Id: qatOneNote
- children
- 0
- name: Controls
- attrs
- Id: ctrlQAT
- children
- 0
- name: Button
- attrs
- Id: qatUndo
- Command: 0xA66C4568
- Image16by16: IMGMAP@one@UndoPS
- LabelText: STR@L_Undo
- 1
- name: Button
- attrs
- Id: qatRedo
- Command: 0xF957BFBE
- Image16by16: IMGMAP@one@RedoPS
- LabelText: STR@L_Redo
- 1
- name: Jewel
- attrs
- Alt: STR@L_DocumentMenu
- Id: jewelOneNote
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- Image: IMGMAP@one@OfficeButton_OneNote_Normal
- ImageDown: IMGMAP@one@OfficeButton_OneNote_Pressed
- ImageHover: IMGMAP@one@OfficeButton_OneNote_Hover
- children
- 0
- name: Menu
- attrs
- Id: menuJewel
- children
- 0
- name: MenuSection
- attrs
- Id: msJewel
- DisplayMode: Menu32
- children
- 0
- name: Controls
- attrs
- Id: ctrlJewels
- children
- 0
- name: Button
- attrs
- Alt: STR@L_OpenInOneNote
- Id: btnjOpenInClient
- Command: 0xD5DF198A
- Image32by32: IMGMAP@one@EditInOneNotePH
- LabelText: STR@L_OpenInOneNote
- Description: STR@L_OpenInOneNoteDescription
- 1
- name: MenuSection
- attrs
- Id: msJewelClose
- DisplayMode: Menu32
- children
- 0
- name: Controls
- attrs
- Id: ctrlJewels2
- children
- 0
- name: Button
- attrs
- Alt: STR@L_Close
- Id: btnjClose
- Command: 0xB4CE0C4E
- Image32by32: IMGMAP@one@ClosePH
- LabelText: STR@L_Close
- Description: STR@L_CloseDescription
- 2
- name: Ribbon
- attrs
- Id: OneNote
- TeamId: WAC
- RootEventCommand: 0xA9CEBE8B
- Image32by32GroupPopupDefault: IMGMAP@NoIconYetPH
- TabSwitchCommand: 0xE2EB63FF
- TextDirection: ltr
- children
- 0
- name: Tabs
- attrs
- Id: tabs
- children
- 0
- name: Tab
- attrs
- Id: tabHome
- Description:
- Title: STR@L_TabHome
- children
- 0
- name: Scaling
- attrs
- children
- 0
- name: MaxSize
- attrs
- Id: grpClipboard.Scaling.MaxSize
- Sequence: 10
- GroupId: grpClipboard
- Size: LargeMedium
- 1
- name: MaxSize
- attrs
- Id: grpBasicText.Scaling.MaxSize
- Sequence: 20
- GroupId: grpBasicText
- Size: Large
- 2
- name: MaxSize
- attrs
- Id: grpStyles.Scaling.MaxSize
- Sequence: 30
- GroupId: grpStyles
- Size: 5style
- 3
- name: MaxSize
- attrs
- Id: grpNoteTags.Scaling.MaxSize
- Sequence: 40
- GroupId: grpNoteTags
- Size: Large
- 4
- name: MaxSize
- attrs
- Id: grpSpelling.Scaling.MaxSize
- Sequence: 50
- GroupId: grpSpelling
- Size: Large
- 5
- name: MaxSize
- attrs
- Id: grpFeedback.Scaling.MaxSize
- Sequence: 60
- GroupId: grpFeedback
- Size: Large
- 6
- name: Scale
- attrs
- Id: grpClipboard.Scaling.LargeSmall
- Sequence: 70
- GroupId: grpClipboard
- Size: LargeSmall
- 7
- name: Scale
- attrs
- Id: grpStyles.Scaling.4style
- Sequence: 80
- GroupId: grpStyles
- Size: 4style
- 8
- name: Scale
- attrs
- Id: grpStyles.Scaling.3style
- Sequence: 90
- GroupId: grpStyles
- Size: 3style
- 9
- name: Scale
- attrs
- Id: grpStyles.Scaling.MoreOnly
- Sequence: 100
- GroupId: grpStyles
- Size: MoreOnly
- 1
- name: Groups
- attrs
- children
- 0
- name: Group
- attrs
- Id: grpClipboard
- Description:
- Title: STR@L_GroupClipboard
- Template: tmpClipboard
- children
- 0
- name: Controls
- attrs
- id: ctrlClipboard
- children
- 0
- name: Button
- attrs
- Id: fseaPaste
- Command: 0x0E249AB3
- Image16by16: IMGMAP@one@PastePS
- Image32by32: IMGMAP@one@PastePH
- LabelText: STR@L_Paste
- TemplateAlias: paste
- 1
- name: Button
- attrs
- Id: fseaCopy
- Command: 0xC9ADDC35
- Image16by16: IMGMAP@one@CopyPS
- LabelText: STR@L_Copy
- TemplateAlias: copy
- 2
- name: Button
- attrs
- Id: fseaCut
- Command: 0x89A31DE2
- Image16by16: IMGMAP@one@CutPS
- LabelText: STR@L_Cut
- TemplateAlias: cut
- 1
- name: Group
- attrs
- Id: grpBasicText
- Description:
- Title: STR@L_GroupBasicText
- Template: tmpBasicText
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: ComboBox
- attrs
- Alt: STR@L_FontName
- Id: fontName
- MenuAlt: STR@L_FontName
- Command: 0xCC7BD8E3
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- QueryCommand: 0x48F327A5
- Width: 80px
- TemplateAlias: font
- ImageArrow: IMGMAP@one@SplitButtonArrow
- PopulateDynamically: true
- PopulateOnlyOnce: false
- PopulateQueryCommand: 0x0AB30E9C
- CacheMenuVersions: false
- AllowFreeForm: true
- 1
- name: ComboBox
- attrs
- Alt: STR@L_FontSize
- Id: fontSize
- MenuAlt: STR@L_FontSize
- Command: 0x8585837E
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- QueryCommand: 0xE43EEA4E
- TemplateAlias: fontSize
- Width: 30px
- AllowFreeForm: true
- ImageArrow: IMGMAP@one@SplitButtonArrow
- children
- 0
- name: Menu
- attrs
- children
- 0
- name: MenuSection
- attrs
- Id: fontSizes
- children
- 0
- name: Controls
- attrs
- Id: ctrlFontSizes
- children
- 0
- name: Button
- attrs
- MenuItemId: 8
- Id: 8
- Command: 0x8585837E
- LabelText: STR@L_FontSize8
- 1
- name: Button
- attrs
- MenuItemId: 9
- Id: 9
- Command: 0x8585837E
- LabelText: STR@L_FontSize9
- 2
- name: Button
- attrs
- MenuItemId: 10
- Id: 10
- Command: 0x8585837E
- LabelText: STR@L_FontSize10
- 3
- name: Button
- attrs
- MenuItemId: 11
- Id: 11
- Command: 0x8585837E
- LabelText: STR@L_FontSize11
- 4
- name: Button
- attrs
- MenuItemId: 12
- Id: 12
- Command: 0x8585837E
- LabelText: STR@L_FontSize12
- 5
- name: Button
- attrs
- MenuItemId: 14
- Id: 14
- Command: 0x8585837E
- LabelText: STR@L_FontSize14
- 6
- name: Button
- attrs
- MenuItemId: 16
- Id: 16
- Command: 0x8585837E
- LabelText: STR@L_FontSize16
- 7
- name: Button
- attrs
- MenuItemId: 18
- Id: 18
- Command: 0x8585837E
- LabelText: STR@L_FontSize18
- 8
- name: Button
- attrs
- MenuItemId: 20
- Id: 20
- Command: 0x8585837E
- LabelText: STR@L_FontSize20
- 9
- name: Button
- attrs
- MenuItemId: 24
- Id: 24
- Command: 0x8585837E
- LabelText: STR@L_FontSize24
- 10
- name: Button
- attrs
- MenuItemId: 26
- Id: 26
- Command: 0x8585837E
- LabelText: STR@L_FontSize26
- 11
- name: Button
- attrs
- MenuItemId: 28
- Id: 28
- Command: 0x8585837E
- LabelText: STR@L_FontSize28
- 12
- name: Button
- attrs
- MenuItemId: 36
- Id: 36
- Command: 0x8585837E
- LabelText: STR@L_FontSize36
- 13
- name: Button
- attrs
- MenuItemId: 48
- Id: 48
- Command: 0x8585837E
- LabelText: STR@L_FontSize48
- 14
- name: Button
- attrs
- MenuItemId: 72
- Id: 72
- Command: 0x8585837E
- LabelText: STR@L_FontSize72
- 2
- name: FlyoutAnchor
- attrs
- Id: fsfaBullets
- Command: 0xBA49231F
- CommandMenuClose: 0xB15EF301
- MenuAlt: STR@L_MenuBullets
- LabelText: STR@L_MenuBullets
- Image16by16: IMGMAP@one@BulletsPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: bullets
- children
- 0
- name: Menu
- attrs
- Id: menuBullets
- children
- 0
- name: MenuSection
- attrs
- Id: msAllBulletStyles
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ctrlBulletStyles
- children
- 0
- name: Button
- attrs
- Id: buttonBulletStyleRemove
- Command: 0x36C0ADC5
- Image16by16: IMGMAP@one@BulletsPS
- LabelText: STR@L_RemoveBullet
- 1
- name: Button
- attrs
- Id: buttonBulletStyleDefault
- Command: 0x36C0ADC5
- Image16by16: IMGMAP@one@BulletsPS
- LabelText: STR@L_BulletStyleDefault
- 2
- name: Button
- attrs
- Id: buttonBulletStyle1
- Command: 0x36C0ADC5
- Image16by16: IMGMAP@one@BulletsPS
- LabelText: STR@L_BulletStyle1
- 3
- name: Button
- attrs
- Id: buttonBulletStyle2
- Command: 0x36C0ADC5
- Image16by16: IMGMAP@one@BulletsPS
- LabelText: STR@L_BulletStyle2
- 4
- name: Button
- attrs
- Id: buttonBulletStyle3
- Command: 0x36C0ADC5
- Image16by16: IMGMAP@one@BulletsPS
- LabelText: STR@L_BulletStyle3
- 3
- name: FlyoutAnchor
- attrs
- Id: fsfaNumbering
- Command: 0xBA49231F
- CommandMenuClose: 0xB15EF301
- MenuAlt: STR@L_MenuNumbering
- LabelText: STR@L_MenuNumbering
- Image16by16: IMGMAP@one@NumberingPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: numbering
- children
- 0
- name: Menu
- attrs
- Id: menuNumbering
- children
- 0
- name: MenuSection
- attrs
- Id: msAllNumberStyles
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ctrlNumberStyles
- children
- 0
- name: Button
- attrs
- Id: buttonNumberStyleRemove
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_RemoveNumber
- 1
- name: Button
- attrs
- Id: buttonNumberStyleDefault
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_NumberStyleDefault
- 2
- name: Button
- attrs
- Id: buttonNumberStyle1
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_NumberStyle1
- 3
- name: Button
- attrs
- Id: buttonNumberStyle2
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_NumberStyle2
- 4
- name: Button
- attrs
- Id: buttonNumberStyle3
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_NumberStyle3
- 5
- name: Button
- attrs
- Id: buttonNumberStyle4
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_NumberStyle4
- 6
- name: Button
- attrs
- Id: buttonNumberStyle5
- Command: 0x2E609993
- Image16by16: IMGMAP@one@NumberingPS
- LabelText: STR@L_NumberStyle5
- 4
- name: Button
- attrs
- Id: fseaClearFormatting
- Command: 0x8A46CCCC
- Image16by16: IMGMAP@one@ClearFormattingPS
- LabelText: STR@L_ClearFormatting
- TemplateAlias: clearformat
- 5
- name: ToggleButton
- attrs
- Id: fsbcBold
- Alt: STR@L_Bold
- Command: 0xF6F32311
- QueryCommand: 0x575E8BDF
- Image16by16: IMGMAP@one@BoldPS
- TemplateAlias: bold
- 6
- name: ToggleButton
- attrs
- Id: fsbcItalic
- Alt: STR@L_Italic
- Command: 0x693612DA
- QueryCommand: 0xFC350CA2
- Image16by16: IMGMAP@one@ItalicPS
- TemplateAlias: italic
- 7
- name: ToggleButton
- attrs
- Id: fsbcUnderline
- Alt: STR@L_Underline
- Command: 0x6F0FAAC6
- QueryCommand: 0x89383C62
- Image16by16: IMGMAP@one@UnderlinePS
- TemplateAlias: underline
- 8
- name: ToggleButton
- attrs
- Id: fsbcStrikethrough
- Alt: STR@L_Strikethrough
- Command: 0xF87F5805
- QueryCommand: 0xA3731E4F
- Image16by16: IMGMAP@one@Strikethrough2PS
- LabelText: STR@L_Strikethrough
- TemplateAlias: strikethrough
- 9
- name: SplitButton
- attrs
- Id: sbSubscript
- Alt: STR@L_Subscript
- Command: 0x56BFC40F
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- Image16by16: IMGMAP@one@SubscriptPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: subscript
- children
- 0
- name: Menu
- attrs
- Id: menuSubscript
- children
- 0
- name: MenuSection
- attrs
- Id: msSubscript
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: msSubscript.Controls
- children
- 0
- name: ToggleButton
- attrs
- Id: fsbcSubscript
- Command: 0x56BFC40F
- QueryCommand: 0xEC0CB24D
- Image16by16: IMGMAP@one@SubscriptPS
- LabelText: STR@L_Subscript
- 1
- name: ToggleButton
- attrs
- Id: fsbcSuperscript
- Command: 0x0010E69E
- QueryCommand: 0x294CD86A
- Image16by16: IMGMAP@one@SuperscriptPS
- LabelText: STR@L_Superscript
- 10
- name: FlyoutAnchor
- attrs
- Id: fontColor
- Command: 0xBA49231F
- CommandMenuClose: 0xB15EF301
- Image16by16: IMGMAP@one@FontColorPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- LabelText: STR@L_MenuFontColor
- TemplateAlias: fontColor
- children
- 0
- name: Menu
- attrs
- Id: menuFontColor
- children
- 0
- name: MenuSection
- attrs
- Id: fontColor
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: Font.Color.Menu.Controls
- children
- 0
- name: Button
- attrs
- Command: 0xD0232D5B
- LabelText: STR@L_Automatic
- Id: automatic
- Image16by16: IMGMAP@one@NoIconYetPS
- 1
- name: MenuSection
- attrs
- Id: Colors
- children
- 0
- name: Controls
- attrs
- Id: Font.Color.Menu.Controls
- children
- 0
- name: ColorPicker
- attrs
- Id: fontColor
- Command: 0xC6D2EFE6
- children
- 0
- name: Colors
- attrs
- children
- 0
- name: Color
- attrs
- Color: FFFFFF
- DisplayColor: #FFFFFF
- Alt: STR@L_FontColorWhite
- 1
- name: Color
- attrs
- Color: 000000
- DisplayColor: #000000
- Alt: STR@L_FontColorBlack
- 2
- name: Color
- attrs
- Color: E1ECEE
- DisplayColor: #EEECE1
- Alt: STR@L_FontColorTan
- 3
- name: Color
- attrs
- Color: 7D491F
- DisplayColor: #1F497D
- Alt: STR@L_FontColorDarkBlue
- 4
- name: Color
- attrs
- Color: BD814F
- DisplayColor: #4F81BD
- Alt: STR@L_FontColorBlue
- 5
- name: Color
- attrs
- Color: 4D50C0
- DisplayColor: #C0504D
- Alt: STR@L_FontColorRed
- 6
- name: Color
- attrs
- Color: 59BB9B
- DisplayColor: #9BBB59
- Alt: STR@L_FontColorOliveGreen
- 7
- name: Color
- attrs
- Color: A26480
- DisplayColor: #8064A2
- Alt: STR@L_FontColorPurple
- 8
- name: Color
- attrs
- Color: C6AC4B
- DisplayColor: #4BACC6
- Alt: STR@L_FontColorAqua
- 9
- name: Color
- attrs
- Color: 4696F7
- DisplayColor: #F79646
- Alt: STR@L_FontColorOrange
- 10
- name: Color
- attrs
- Color: F2F2F2
- DisplayColor: #F2F2F2
- Alt: STR@L_FontColorWhiteDarker5pct
- 11
- name: Color
- attrs
- Color: 7F7F7F
- DisplayColor: #7F7F7F
- Alt: STR@L_FontColorBlackLighter50pct
- 12
- name: Color
- attrs
- Color: C3D9DD
- DisplayColor: #DDD9C3
- Alt: STR@L_FontColorTanDarker10pct
- 13
- name: Color
- attrs
- Color: F0D9C6
- DisplayColor: #C6D9F0
- Alt: STR@L_FontColorDarkBlueLighter80pct
- 14
- name: Color
- attrs
- Color: F1E5DB
- DisplayColor: #DBE5F1
- Alt: STR@L_FontColorBlueLighter80pct
- 15
- name: Color
- attrs
- Color: DBDCF2
- DisplayColor: #F2DCDB
- Alt: STR@L_FontColorRedLighter80pct
- 16
- name: Color
- attrs
- Color: DDF1EB
- DisplayColor: #EBF1DD
- Alt: STR@L_FontColorOliveGreenLighter80pct
- 17
- name: Color
- attrs
- Color: ECE0E5
- DisplayColor: #E5E0EC
- Alt: STR@L_FontColorPurpleLighter80pct
- 18
- name: Color
- attrs
- Color: F3EEDB
- DisplayColor: #DBEEF3
- Alt: STR@L_FontColorAquaLighter80pct
- 19
- name: Color
- attrs
- Color: DAEAFD
- DisplayColor: #FDEADA
- Alt: STR@L_FontColorOrangeLighter80pct
- 20
- name: Color
- attrs
- Color: D8D8D8
- DisplayColor: #D8D8D8
- Alt: STR@L_FontColorWhiteDarker15pct
- 21
- name: Color
- attrs
- Color: 595959
- DisplayColor: #595959
- Alt: STR@L_FontColorBlackLighter35pct
- 22
- name: Color
- attrs
- Color: 97BDC4
- DisplayColor: #C4BD97
- Alt: STR@L_FontColorTanDarker25pct
- 23
- name: Color
- attrs
- Color: E2B38D
- DisplayColor: #8DB3E2
- Alt: STR@L_FontColorDarkBlueLighter60pct
- 24
- name: Color
- attrs
- Color: E4CCB8
- DisplayColor: #B8CCE4
- Alt: STR@L_FontColorBlueLighter60pct
- 25
- name: Color
- attrs
- Color: B7B9E5
- DisplayColor: #E5B9B7
- Alt: STR@L_FontColorRedLighter60pct
- 26
- name: Color
- attrs
- Color: BCE3D7
- DisplayColor: #D7E3BC
- Alt: STR@L_FontColorOliveGreenLighter60pct
- 27
- name: Color
- attrs
- Color: D9C1CC
- DisplayColor: #CCC1D9
- Alt: STR@L_FontColorPurpleLighter60pct
- 28
- name: Color
- attrs
- Color: E8DDB7
- DisplayColor: #B7DDE8
- Alt: STR@L_FontColorAquaLighter60pct
- 29
- name: Color
- attrs
- Color: B5D5FB
- DisplayColor: #FBD5B5
- Alt: STR@L_FontColorOrangeLighter60pct
- 30
- name: Color
- attrs
- Color: BFBFBF
- DisplayColor: #BFBFBF
- Alt: STR@L_FontColorWhiteDarker25pct
- 31
- name: Color
- attrs
- Color: 3F3F3F
- DisplayColor: #3F3F3F
- Alt: STR@L_FontColorBlackLighter25pct
- 32
- name: Color
- attrs
- Color: 538993
- DisplayColor: #938953
- Alt: STR@L_FontColorTanDarker50pct
- 33
- name: Color
- attrs
- Color: D48D54
- DisplayColor: #548DD4
- Alt: STR@L_FontColorDarkBlueLighter40pct
- 34
- name: Color
- attrs
- Color: D7B395
- DisplayColor: #95B3D7
- Alt: STR@L_FontColorBlueLighter40pct
- 35
- name: Color
- attrs
- Color: 9496D9
- DisplayColor: #D99694
- Alt: STR@L_FontColorRedLighter40pct
- 36
- name: Color
- attrs
- Color: 9BD6C3
- DisplayColor: #C3D69B
- Alt: STR@L_FontColorOliveGreenLighter40pct
- 37
- name: Color
- attrs
- Color: C7A2B2
- DisplayColor: #B2A2C7
- Alt: STR@L_FontColorPurpleLighter40pct
- 38
- name: Color
- attrs
- Color: DCCD92
- DisplayColor: #92CDDC
- Alt: STR@L_FontColorAquaLighter40pct
- 39
- name: Color
- attrs
- Color: 8FC0FA
- DisplayColor: #FAC08F
- Alt: STR@L_FontColorOrangeLighter40pct
- 40
- name: Color
- attrs
- Color: A5A5A5
- DisplayColor: #A5A5A5
- Alt: STR@L_FontColorWhiteDarker35pct
- 41
- name: Color
- attrs
- Color: 262626
- DisplayColor: #262626
- Alt: STR@L_FontColorBlackLighter15pct
- 42
- name: Color
- attrs
- Color: 294449
- DisplayColor: #494429
- Alt: STR@L_FontColorTanDarker75pct
- 43
- name: Color
- attrs
- Color: 5D3617
- DisplayColor: #17365D
- Alt: STR@L_FontColorDarkBlueDarker25pct
- 44
- name: Color
- attrs
- Color: 926036
- DisplayColor: #366092
- Alt: STR@L_FontColorBlueDarker25pct
- 45
- name: Color
- attrs
- Color: 343795
- DisplayColor: #953734
- Alt: STR@L_FontColorRedDarker25pct
- 46
- name: Color
- attrs
- Color: 3C9276
- DisplayColor: #76923C
- Alt: STR@L_FontColorOliveGreenDarker25pct
- 47
- name: Color
- attrs
- Color: 7A495F
- DisplayColor: #5F497A
- Alt: STR@L_FontColorPurpleDarker25pct
- 48
- name: Color
- attrs
- Color: 9B8431
- DisplayColor: #31849B
- Alt: STR@L_FontColorAquaDarker25pct
- 49
- name: Color
- attrs
- Color: 096CE3
- DisplayColor: #E36C09
- Alt: STR@L_FontColorOrangeDarker25pct
- 50
- name: Color
- attrs
- Color: 7F7F7F
- DisplayColor: #7F7F7F
- Alt: STR@L_FontColorWhiteDarker50pct
- 51
- name: Color
- attrs
- Color: 0C0C0C
- DisplayColor: #0C0C0C
- Alt: STR@L_FontColorBlackLighter5pct
- 52
- name: Color
- attrs
- Color: 101B1D
- DisplayColor: #1D1B10
- Alt: STR@L_FontColorTan Darker90pct
- 53
- name: Color
- attrs
- Color: E3240F
- DisplayColor: #0F243E
- Alt: STR@L_FontColorDarkBlueDarker50pct
- 54
- name: Color
- attrs
- Color: 614024
- DisplayColor: #244061
- Alt: STR@L_FontColorBlueDarker50pct
- 55
- name: Color
- attrs
- Color: 232463
- DisplayColor: #632423
- Alt: STR@L_FontColorRedDarker50pct
- 56
- name: Color
- attrs
- Color: 28614F
- DisplayColor: #4F6128
- Alt: STR@L_FontColorOliveGreenDarker50pct
- 57
- name: Color
- attrs
- Color: 51313F
- DisplayColor: #3F3151
- Alt: STR@L_FontColorPurpleDarker50pct
- 58
- name: Color
- attrs
- Color: 675820
- DisplayColor: #205867
- Alt: STR@L_FontColorAquaDarker50pct
- 59
- name: Color
- attrs
- Color: 064898
- DisplayColor: #984806
- Alt: STR@L_FontColorOrangeDarker50pct
- 2
- name: MenuSection
- attrs
- Id: fontColor
- Title: STR@L_MenuStandardColors
- children
- 0
- name: Controls
- attrs
- Id: Font.Color.Menu.Controls
- children
- 0
- name: ColorPicker
- attrs
- Id: fontColor
- Command: 0xC6D2EFE6
- children
- 0
- name: Colors
- attrs
- children
- 0
- name: Color
- attrs
- Color: 0000C0
- Alt: STR@L_FontColorDarkRed
- DisplayColor: #C00000
- 1
- name: Color
- attrs
- Color: 0000FF
- Alt: STR@L_FontColorRed
- DisplayColor: #FF0000
- 2
- name: Color
- attrs
- Color: 00C0FF
- Alt: STR@L_FontColorOrange
- DisplayColor: #FFC000
- 3
- name: Color
- attrs
- Color: 00FFFF
- Alt: STR@L_FontColorYellow
- DisplayColor: #FFFF00
- 4
- name: Color
- attrs
- Color: 50D092
- Alt: STR@L_FontColorLightGreen
- DisplayColor: #92D050
- 5
- name: Color
- attrs
- Color: 50B000
- Alt: STR@L_FontColorDarkGreen
- DisplayColor: #00B050
- 6
- name: Color
- attrs
- Color: F0B000
- Alt: STR@L_FontColorLightBlue
- DisplayColor: #00B0F0
- 7
- name: Color
- attrs
- Color: C07000
- Alt: STR@L_FontColorBlue
- DisplayColor: #0070C0
- 8
- name: Color
- attrs
- Color: 602000
- Alt: STR@L_FontColorDarkBlue
- DisplayColor: #002060
- 9
- name: Color
- attrs
- Color: A03070
- Alt: STR@L_FontColorPurple
- DisplayColor: #7030A0
- 11
- name: FlyoutAnchor
- attrs
- Id: fontBackgroundColor
- Command: 0xBA49231F
- CommandMenuClose: 0xB15EF301
- Image16by16: IMGMAP@one@HighlightPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- LabelText: STR@L_MenuHighlightColor
- TemplateAlias: fontBackgroundColor
- children
- 0
- name: Menu
- attrs
- Id: menuFontBackgroundColor
- children
- 0
- name: MenuSection
- attrs
- Id: fontBackgroundColor
- children
- 0
- name: Controls
- attrs
- Id: Background.Font.Color.Menu.Controls
- children
- 0
- name: ColorPicker
- attrs
- Id: fontBackgroundColor
- Command: 0x1DE8534A
- children
- 0
- name: Colors
- attrs
- children
- 0
- name: Color
- attrs
- Color: 00FFFF
- Alt: STR@L_FontColorYellow
- DisplayColor: #FFFF00
- 1
- name: Color
- attrs
- Color: 00FF00
- Alt: STR@L_FontColorGreen
- DisplayColor: #00FF00
- 2
- name: Color
- attrs
- Color: FFFF00
- Alt: STR@L_FontColorCyan
- DisplayColor: #00FFFF
- 3
- name: Color
- attrs
- Color: FF00FF
- Alt: STR@L_FontColorMagenta
- DisplayColor: #FF00FF
- 4
- name: Color
- attrs
- Color: FF0000
- Alt: STR@L_FontColorBlue
- DisplayColor: #0000FF
- 5
- name: Color
- attrs
- Color: 0000FF
- Alt: STR@L_FontColorRed
- DisplayColor: #FF0000
- 6
- name: Color
- attrs
- Color: 800000
- Alt: STR@L_FontColorDarkBlue
- DisplayColor: #000080
- 7
- name: Color
- attrs
- Color: 808000
- Alt: STR@L_FontColorDarkCyan
- DisplayColor: #008080
- 8
- name: Color
- attrs
- Color: 008000
- Alt: STR@L_FontColorDarkGreen
- DisplayColor: #008080
- 9
- name: Color
- attrs
- Color: 800080
- Alt: STR@L_FontColorDarkMagenta
- DisplayColor: #800080
- 10
- name: Color
- attrs
- Color: 000080
- Alt: STR@L_FontColorDarkRed
- DisplayColor: #800000
- 11
- name: Color
- attrs
- Color: 008080
- Alt: STR@L_FontColorDarkYellow
- DisplayColor: #808000
- 12
- name: Color
- attrs
- Color: 808080
- Alt: STR@L_FontColorGrey
- DisplayColor: #808080
- 13
- name: Color
- attrs
- Color: C0C0C0
- Alt: STR@L_FontColorLightGrey
- DisplayColor: #C0C0C0
- 14
- name: Color
- attrs
- Color: 000000
- Alt: STR@L_FontColorBlack
- DisplayColor: #000000
- 1
- name: MenuSection
- attrs
- Id: noFontBackgroundColor
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: No.Background.Font.Color.Menu.Controls
- children
- 0
- name: Button
- attrs
- Command: 0x2184F4E5
- Id: none
- LabelText: STR@L_NoHighlight
- Image16by16: IMGMAP@one@NoIconYetPS
- 12
- name: Button
- attrs
- Id: fseaOutdent
- Command: 0xDE14BFF6
- Image16by16: IMGMAP@one@OutdentPS
- LabelText: STR@L_DecreaseIndent
- TemplateAlias: outdent
- 13
- name: Button
- attrs
- Id: fseaIndent
- Command: 0x52C8F8EA
- Image16by16: IMGMAP@one@IndentPS
- LabelText: STR@L_IncreaseIndent
- TemplateAlias: indent
- 14
- name: FlyoutAnchor
- attrs
- Id: faAlignment
- Command: 0xBA49231F
- CommandMenuClose: 0xB15EF301
- LabelText: STR@L_MenuAlignment
- Image16by16: IMGMAP@one@LeftJustifyPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: alignment
- children
- 0
- name: Menu
- attrs
- Id: menuAlignment
- children
- 0
- name: MenuSection
- attrs
- Id: msAlignment
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: msAlignment.Controls
- children
- 0
- name: ToggleButton
- attrs
- Id: LeftJustify
- Command: 0x9757E6E5
- QueryCommand: 0xE25D77A3
- Image16by16: IMGMAP@one@LeftJustifyPS
- Alt: STR@L_AlignTextLeft
- LabelText: STR@L_AlignTextLeft
- 1
- name: ToggleButton
- attrs
- Id: CenterJustify
- Command: 0xFF58B829
- QueryCommand: 0xC27E85BB
- Image16by16: IMGMAP@one@CenteredPS
- Alt: STR@L_JustifyCenter
- LabelText: STR@L_JustifyCenter
- 2
- name: ToggleButton
- attrs
- Id: RightJustify
- Command: 0x17730524
- QueryCommand: 0x776E8734
- Image16by16: IMGMAP@one@RightJustifyPS
- Alt: STR@L_AlignTextRight
- LabelText: STR@L_AlignTextRight
- 1
- name: MenuSection
- attrs
- Id: msAlignmentLTR
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: msAlignmentLTR.Controls
- children
- 0
- name: ToggleButton
- attrs
- Id: TextDirLTR
- Command: 0xF47C0C5A
- QueryCommand: 0x44D4414A
- Image16by16: IMGMAP@one@LtrPS
- LabelText: STR@L_TextDirLTR
- 1
- name: ToggleButton
- attrs
- Id: TextDirRTL
- Command: 0x4A9EE59A
- QueryCommand: 0x44D43E8A
- Image16by16: IMGMAP@one@RtlPS
- LabelText: STR@L_TextDirRTL
- 2
- name: Group
- attrs
- Id: grpStyles
- Description:
- Title: STR@L_GroupStyles
- Template: tmpStyles
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: GalleryButton
- attrs
- Id: buttonStaticStyle1
- Command: 0x3E088D63
- QueryCommand: 0xBA30CCB1
- InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle1" id="labelPreviewContent0">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle0">Heading 1</P></DIV>
- ElementDimensions: Size64by48
- LabelText: STR@L_StyleHeading1
- Alt: STR@L_StyleHeading1
- TemplateAlias: preview1
- 1
- name: GalleryButton
- attrs
- Id: buttonStaticStyle2
- Command: 0x3E088D63
- QueryCommand: 0xBA30CCB1
- InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle2" id="labelPreviewContent1">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle1">Heading 2</P></DIV>
- ElementDimensions: Size64by48
- LabelText: STR@L_StyleHeading2
- Alt: STR@L_StyleHeading2
- TemplateAlias: preview2
- 2
- name: GalleryButton
- attrs
- Id: buttonStaticStyle3
- QueryCommand: 0xBA30CCB1
- Command: 0x3E088D63
- InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle3" id="labelPreviewContent2">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle2">Heading 3</P></DIV>
- ElementDimensions: Size64by48
- LabelText: STR@L_StyleHeading3
- Alt: STR@L_StyleHeading3
- TemplateAlias: preview3
- 3
- name: GalleryButton
- attrs
- Id: buttonStaticStyle4
- Command: 0x3E088D63
- QueryCommand: 0xBA30CCB1
- InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle4" id="labelPreviewContent3">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle3">Quote</P></DIV>
- ElementDimensions: Size64by48
- LabelText: STR@L_StyleQuote
- Alt: STR@L_StyleQuote
- TemplateAlias: preview4
- 4
- name: GalleryButton
- attrs
- Id: buttonStaticStyle5
- Command: 0x3E088D63
- QueryCommand: 0xBA30CCB1
- InnerHTML: <DIV class="PreviewStyleContainer"><P class="PreviewStaticStyle5" id="labelPreviewContent4">AaBbCc</P><P class="PreviewStyleLabel" id="labelPreviewStyle4">Citation</P></DIV>
- ElementDimensions: Size64by48
- LabelText: STR@L_StyleCitation
- Alt: STR@L_StyleCitation
- TemplateAlias: preview5
- 5
- name: FlyoutAnchor
- attrs
- Alt: STR@L_MenuMoreStyles
- Id: fsfaMoreStyles
- Command: 0xBA49231F
- MenuAlt: STR@L_MenuMoreStyles
- LabelText: STR@L_MenuMoreStyles
- Image32by32: IMGMAP@one@UxGalWordQuickFormatsHH
- Image16by16: IMGMAP@one@NoIconYetPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: morestyles
- PopulateDynamically: true
- PopulateOnlyOnce: false
- PopulateQueryCommand: 0x289E9560
- CommandMenuClose: 0xB15EF301
- CacheMenuVersions: false
- 3
- name: Group
- attrs
- Id: grpNoteTags
- Description:
- Title: STR@L_GroupTags
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- Id: grpNoteTags.Controls
- children
- 0
- name: FlyoutAnchor
- attrs
- Id: flyNoteTags
- Alt: STR@L_NoteTags
- Image32by32: IMGMAP@one@NoteTagsHH
- ImageArrow: IMGMAP@one@SplitButtonArrow
- LabelText: STR@L_NoteTags
- Command: 0x0316F274
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- TemplateAlias: button1
- children
- 0
- name: Menu
- attrs
- Id: menuNoteTags
- children
- 0
- name: MenuSection
- attrs
- Id: msNoteTagInsert
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ctrlNoteTagInsert
- children
- 0
- name: Button
- attrs
- Id: NT0
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@3_16_M
- LabelText: STR@l_NoteTag_0
- 1
- name: Button
- attrs
- Id: NT1
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@13_16_N
- LabelText: STR@l_NoteTag_1
- 2
- name: Button
- attrs
- Id: NT2
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@15_16_N
- LabelText: STR@l_NoteTag_2
- 3
- name: Button
- attrs
- Id: NT3
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@NoteTagNoShape
- LabelText: STR@l_NoteTag_3
- 4
- name: Button
- attrs
- Id: NT4
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@NoteTagNoShape
- LabelText: STR@l_NoteTag_4
- 5
- name: Button
- attrs
- Id: NT5
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@136_16_N
- LabelText: STR@l_NoteTag_5
- 6
- name: Button
- attrs
- Id: NT6
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@118_16_N
- LabelText: STR@l_NoteTag_6
- 7
- name: Button
- attrs
- Id: NT7
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@23_16_N
- LabelText: STR@l_NoteTag_7
- 8
- name: Button
- attrs
- Id: NT8
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@18_16_N
- LabelText: STR@l_NoteTag_8
- 9
- name: Button
- attrs
- Id: NT9
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@125_16_N
- LabelText: STR@l_NoteTag_9
- 10
- name: Button
- attrs
- Id: NT10
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@21_16_N
- LabelText: STR@l_NoteTag_10
- 11
- name: Button
- attrs
- Id: NT11
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@131_16_N
- LabelText: STR@l_NoteTag_11
- 12
- name: Button
- attrs
- Id: NT12
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@17_16_N
- LabelText: STR@l_NoteTag_12
- 13
- name: Button
- attrs
- Id: NT13
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@100_16_N
- LabelText: STR@l_NoteTag_13
- 14
- name: Button
- attrs
- Id: NT14
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@101_16_N
- LabelText: STR@l_NoteTag_14
- 15
- name: Button
- attrs
- Id: NT15
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@122_16_N
- LabelText: STR@l_NoteTag_15
- 16
- name: Button
- attrs
- Id: NT16
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@132_16_N
- LabelText: STR@l_NoteTag_16
- 17
- name: Button
- attrs
- Id: NT17
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@121_16_N
- LabelText: STR@l_NoteTag_17
- 18
- name: Button
- attrs
- Id: NT18
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@125_16_N
- LabelText: STR@l_NoteTag_18
- 19
- name: FlyoutAnchor
- attrs
- Id: flyNoteTagsMore
- Alt: STR@L_NoteTagsMore
- Image16by16: IMGMAP@one@BlankButtonPS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- LabelText: STR@L_NoteTagsMore
- Command: 0x0316F274
- TemplateAlias: button1
- children
- 0
- name: Menu
- attrs
- Id: menuNoteTagMore
- children
- 0
- name: MenuSection
- attrs
- Id: msNoteTagMore
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ctrlNoteTagMore
- children
- 0
- name: Button
- attrs
- Id: NT19
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@24_16_N
- LabelText: STR@l_NoteTag_19
- 1
- name: Button
- attrs
- Id: NT20
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@94_16_M
- LabelText: STR@l_NoteTag_20
- 2
- name: Button
- attrs
- Id: NT21
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@94_16_M
- LabelText: STR@l_NoteTag_21
- 3
- name: Button
- attrs
- Id: NT22
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@95_16_M
- LabelText: STR@l_NoteTag_22
- 4
- name: Button
- attrs
- Id: NT23
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@106_16_N
- LabelText: STR@l_NoteTag_23
- 5
- name: Button
- attrs
- Id: NT24
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@12_16_M
- LabelText: STR@l_NoteTag_24
- 6
- name: Button
- attrs
- Id: NT25
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@12_16_M
- LabelText: STR@l_NoteTag_25
- 7
- name: Button
- attrs
- Id: NT26
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@28_16_M
- LabelText: STR@l_NoteTag_26
- 8
- name: Button
- attrs
- Id: NT27
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@71_16_M
- LabelText: STR@l_NoteTag_27
- 9
- name: Button
- attrs
- Id: NT28
- Command: 0x81B914F1
- Image16by16: IMGMAP@one@8_16_M
- LabelText: STR@l_NoteTag_28
- 1
- name: MenuSection
- attrs
- Id: msNoteTagCommands
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ctrlNoteTagCommands
- children
- 0
- name: Button
- attrs
- Id: buttonNoteTagRemoveAll
- Command: 0x5C016681
- Image16by16: IMGMAP@one@NoIconYetPS
- LabelText: STR@L_NoteTagRemove
- 4
- name: Group
- attrs
- Id: grpSpelling
- Description:
- Title: STR@L_GroupProofing
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- Id: grpSpelling.Controls
- children
- 0
- name: SplitButton
- attrs
- Id: sbSpelling
- Alt: STR@L_NextSpellingError
- LabelText: STR@L_NextSpellingError
- Command: 0x9DBB85E9
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- Image32by32: IMGMAP@one@SpellingHH
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: button1
- children
- 0
- name: Menu
- attrs
- Id: menuSpelling
- children
- 0
- name: MenuSection
- attrs
- Id: msSpelling
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: msSpelling.Controls
- children
- 0
- name: Button
- attrs
- Id: fseaNextSpellingError
- Command: 0x9DBB85E9
- Image16by16: IMGMAP@one@SpellingHS
- LabelText: STR@L_NextSpellingError
- 1
- name: Button
- attrs
- Id: fseaSetLanguage
- Command: 0x9842D690
- Image16by16: IMGMAP@one@SetLanguagePS
- LabelText: STR@L_SetLanguageMenu
- 5
- name: Group
- attrs
- Id: grpFeedback
- Description:
- Title: STR@L_Feedback
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- Id: grpFeedback.Controls
- children
- 0
- name: Button
- attrs
- Id: buttonSurveyOfTheMonth
- Command: 0x5142AA26
- Image32by32: IMGMAP@one@CustomerFeedbackPH
- LabelText: STR@L_GiveFeedback
- Alt: STR@L_GiveFeedback
- TemplateAlias: button1
- 1
- name: Tab
- attrs
- Id: tabInsert
- Description:
- Title: STR@L_TabInsert
- children
- 0
- name: Scaling
- attrs
- Id: Insert.Scaling
- children
- 0
- name: MaxSize
- attrs
- Id: grpInsertNotebook.Scaling.MaxSize
- Sequence: 10
- GroupId: grpNotebook
- Size: Large
- 1
- name: MaxSize
- attrs
- Id: grpInsertTables.Scaling.MaxSize
- Sequence: 20
- GroupId: grpInsertTables
- Size: Large
- 2
- name: MaxSize
- attrs
- Id: grpIllustrations.Scaling.MaxSize
- Sequence: 30
- GroupId: grpIllustrations
- Size: Large
- 3
- name: MaxSize
- attrs
- Id: grpInsertLinks.Scaling.MaxSize
- Sequence: 40
- GroupId: grpInsertLinks
- Size: Large
- 1
- name: Groups
- attrs
- Id: Insert.Groups
- children
- 0
- name: Group
- attrs
- Id: grpNotebook
- Description:
- Title: STR@L_GroupNotebook
- Template: tmpTwoButton
- children
- 0
- name: Controls
- attrs
- Id: grpNotebook.Controls
- children
- 0
- name: Button
- attrs
- Id: fseaNew
- Command: 0x1F15EF8B
- Image16by16: IMGMAP@one@NewHS
- Image32by32: IMGMAP@one@NewHH
- LabelText: STR@L_NewPage
- TemplateAlias: button1
- 1
- name: Button
- attrs
- Id: fseaNewSection
- Command: 0xA20EA835
- Image16by16: IMGMAP@one@JotInsertSectionHS
- Image32by32: IMGMAP@one@msotJotInsertSectionShortHH
- LabelText: STR@L_NewSection
- TemplateAlias: button2
- 1
- name: Group
- attrs
- Id: grpInsertTables
- Description:
- Title: STR@L_GroupTables
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- Id: InsertTable.Controls
- children
- 0
- name: FlyoutAnchor
- attrs
- Id: flyInsertTable
- Alt: STR@L_Table
- Image32by32: IMGMAP@one@TablePH
- Image16by16: IMGMAP@one@TablePS
- ImageArrow: IMGMAP@one@SplitButtonArrow
- LabelText: STR@L_Table
- Command: 0xB271D79B
- CommandMenuOpen: 0x215688C3
- CommandMenuClose: 0xB15EF301
- TemplateAlias: button1
- children
- 0
- name: Menu
- attrs
- Id: menuInsertTable
- children
- 0
- name: MenuSection
- attrs
- Id: msInserTable
- Title: STR@L_MenuInsertTable
- children
- 0
- name: Controls
- attrs
- Id: Insert.Table.Menu.Controls
- children
- 0
- name: InsertTable
- attrs
- Id: insertTable
- Alt: STR@L_MenuInsertTableGrid
- Command: 0x3A21CA91
- MenuSectionInitialTitle: STR@L_MenuInsertTable
- MenuSectionTitle: STR@L_MenuInsertTableGrid
- 2
- name: Group
- attrs
- Id: grpIllustrations
- Description:
- Title: STR@L_GroupMedia
- Template: tmpTwoButton
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: Button
- attrs
- Id: fseaInsertPicture
- Command: 0x9F2ED567
- Image32by32: IMGMAP@one@InsertPicturePH
- LabelText: STR@L_Picture
- TemplateAlias: button1
- 1
- name: Button
- attrs
- Id: fseaInsertClipart
- Command: 0x91888286
- Image32by32: IMGMAP@one@ClipArtHH
- LabelText: STR@L_ClipArt
- TemplateAlias: button2
- 3
- name: Group
- attrs
- Id: grpInsertLinks
- Description:
- Title: STR@L_GroupLinks
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- Id: ctrlInsert
- children
- 0
- name: Button
- attrs
- Id: fseaInsertHyperlink
- Command: 0xA19EE2D9
- Image32by32: IMGMAP@one@WebInsertHyperlinkPH
- Image16by16: IMGMAP@one@WebInsertHyperlinkPS
- LabelText: STR@L_Hyperlink
- TemplateAlias: button1
- 2
- name: Tab
- attrs
- Id: tabHistory
- Description:
- Title: STR@L_TabHistory
- children
- 0
- name: Scaling
- attrs
- children
- 0
- name: MaxSize
- attrs
- Id: grpAuthors.Scaling.MaxSize
- Sequence: 10
- GroupId: grpAuthors
- Size: Large
- 1
- name: MaxSize
- attrs
- Id: grpVersions.Scaling.MaxSize
- Sequence: 20
- GroupId: grpVersions
- Size: Large
- 1
- name: Groups
- attrs
- children
- 0
- name: Group
- attrs
- Id: grpAuthors
- Description:
- Title: STR@L_GroupAuthors
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: ToggleButton
- attrs
- Id: fsbcShowAuthorInfo
- Alt: STR@L_ShowAuthors
- Command: 0x8C3942AB
- QueryCommand: 0x53A2D8A7
- Image32by32: IMGMAP@one@ShowAuthorsHH
- Image16by16: IMGMAP@one@NoIconYetPS
- LabelText: STR@L_ShowAuthors
- TemplateAlias: button1
- 1
- name: Group
- attrs
- Id: grpVersions
- Description:
- Title: STR@L_GroupVersions
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: ToggleButton
- attrs
- Id: fsbcShowVersions
- Alt: STR@L_ShowVersions
- Command: 0xCCB576ED
- QueryCommand: 0x3D948D71
- Image32by32: IMGMAP@one@VersionsPH
- LabelText: STR@L_ShowVersions
- TemplateAlias: button1
- 3
- name: Tab
- attrs
- Id: tabView
- Description:
- Title: STR@L_TabView
- children
- 0
- name: Scaling
- attrs
- children
- 0
- name: MaxSize
- attrs
- Id: grpViews.Scaling.MaxSize
- Sequence: 10
- GroupId: grpViews
- Size: Large
- 1
- name: Groups
- attrs
- children
- 0
- name: Group
- attrs
- Id: grpViews
- Description:
- Title: STR@L_GroupNotebookViews
- Template: tmpTwoButton
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: Button
- attrs
- Alt: STR@L_ReadView
- Id: btnReadingMode
- Command: 0xE56FA2A1
- LabelText: STR@L_ReadView
- Image32by32: IMGMAP@one@ReadingModePH
- TemplateAlias: button1
- 1
- name: ToggleButton
- attrs
- Alt: STR@L_Edit
- Id: btnEditOnWeb
- Command: 0x864FCF9B
- QueryCommand: 0x3EC7EEA9
- LabelText: STR@L_Edit
- Image32by32: IMGMAP@one@EditPH
- TemplateAlias: button2
- 1
- name: ContextualTabs
- attrs
- Id: ContextualTabs
- children
- 0
- name: ContextualGroup
- attrs
- Color: Yellow
- ContextualGroupId: cgidTableGroup
- Id: ContextualTabs.Tables
- Command: 0x712E133C
- Title: STR@L_TabTableTools
- children
- 0
- name: Tab
- attrs
- Id: ContextualTabs.Tables.Layout
- Description:
- Title: STR@L_TabLayout
- children
- 0
- name: Scaling
- attrs
- Id: ContextualTabs.Tables.Layout.Scaling
- children
- 0
- name: MaxSize
- attrs
- Sequence: 0
- GroupId: ContextualTabs.Tables.Layout.Select
- Size: Large
- 1
- name: MaxSize
- attrs
- Sequence: 0
- GroupId: ContextualTabs.Tables.Layout.Delete
- Size: Large
- 2
- name: MaxSize
- attrs
- Sequence: 0
- GroupId: ContextualTabs.Tables.Layout.Insert
- Size: Large
- 3
- name: MaxSize
- attrs
- Sequence: 0
- GroupId: ContextualTabs.Tables.Layout.Borders
- Size: Large
- 4
- name: MaxSize
- attrs
- Sequence: 0
- GroupId: ContextualTabs.Tables.Layout.Alignment
- Size: Large
- 5
- name: Scale
- attrs
- Sequence: 10
- GroupId: ContextualTabs.Tables.Layout.Select
- Size: Medium
- 6
- name: Scale
- attrs
- Sequence: 15
- GroupId: ContextualTabs.Tables.Layout.Alignment
- Size: Medium
- 7
- name: Scale
- attrs
- Sequence: 20
- GroupId: ContextualTabs.Tables.Layout.Delete
- Size: Medium
- 8
- name: Scale
- attrs
- Sequence: 30
- GroupId: ContextualTabs.Tables.Layout.Insert
- Size: Medium
- 9
- name: Scale
- attrs
- Sequence: 40
- GroupId: ContextualTabs.Tables.Layout.Select
- Size: Small
- 10
- name: Scale
- attrs
- Sequence: 50
- GroupId: ContextualTabs.Tables.Layout.Insert
- Size: Small
- 11
- name: Scale
- attrs
- Sequence: 55
- GroupId: ContextualTabs.Tables.Layout.Alignment
- Size: Small
- 12
- name: Scale
- attrs
- Sequence: 60
- GroupId: ContextualTabs.Tables.Layout.Select
- Size: Collapsed
- 13
- name: Scale
- attrs
- Sequence: 70
- GroupId: ContextualTabs.Tables.Layout.Delete
- Size: Collapsed
- 1
- name: Groups
- attrs
- Id: ContextualTabs.Tables.Layout.Groups
- children
- 0
- name: Group
- attrs
- Id: ContextualTabs.Tables.Layout.Select
- Description:
- Title: STR@L_GroupSelect
- Template: tmpFourButton
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.Select.Controls
- children
- 0
- name: Button
- attrs
- Id: btnSelectTable
- Command: 0x8980B8D6
- Image32by32: IMGMAP@one@TableSelectTablePH
- Image16by16: IMGMAP@one@TableSelectTablePS
- LabelText: STR@L_SelectTable
- TemplateAlias: button1
- 1
- name: Button
- attrs
- Id: btnSelectColumn
- Command: 0x8B95D5D4
- Image32by32: IMGMAP@one@TableSelectColumnPH
- Image16by16: IMGMAP@one@TableSelectColumnPS
- LabelText: STR@L_SelectColumn
- TemplateAlias: button2
- 2
- name: Button
- attrs
- Id: btnSelectRow
- Command: 0xD117E3D2
- Image32by32: IMGMAP@one@TableSelectRowPH
- Image16by16: IMGMAP@one@TableSelectRowPS
- LabelText: STR@L_SelectRow
- TemplateAlias: button3
- 3
- name: Button
- attrs
- Id: btnSelectCell
- Command: 0x06A11EAE
- Image32by32: IMGMAP@one@TableSelectCellPH
- Image16by16: IMGMAP@one@TableSelectCellPS
- LabelText: STR@L_SelectCell
- TemplateAlias: button4
- 4
- name: FlyoutAnchor
- attrs
- Alt: STR@L_Select
- Id: idTableSelect
- Image32by32: IMGMAP@one@TableSelectTablePH
- LabelText: STR@L_Select
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: flyout
- children
- 0
- name: Menu
- attrs
- Id: menuTableSelect
- children
- 0
- name: MenuSection
- attrs
- Id: msTableSelect
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.SelectMenu.Controls
- children
- 0
- name: Button
- attrs
- Id: btnSelectTable
- Command: 0x8980B8D6
- Image32by32: IMGMAP@one@TableSelectTablePH
- Image16by16: IMGMAP@one@TableSelectTablePS
- LabelText: STR@L_SelectTable
- 1
- name: Button
- attrs
- Id: btnSelectColumn
- Command: 0x8B95D5D4
- Image32by32: IMGMAP@one@TableSelectColumnPH
- Image16by16: IMGMAP@one@TableSelectColumnPS
- LabelText: STR@L_SelectColumn
- 2
- name: Button
- attrs
- Id: btnSelectRow
- Command: 0xD117E3D2
- Image32by32: IMGMAP@one@TableSelectRowPH
- Image16by16: IMGMAP@one@TableSelectRowPS
- LabelText: STR@L_SelectRow
- 3
- name: Button
- attrs
- Id: btnSelectCell
- Command: 0x06A11EAE
- Image32by32: IMGMAP@one@TableSelectCellPH
- Image16by16: IMGMAP@one@TableSelectCellPS
- LabelText: STR@L_SelectCell
- 1
- name: Group
- attrs
- Id: ContextualTabs.Tables.Layout.Delete
- Description:
- Title: STR@L_GroupDelete
- Template: tmpThreeButton
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.Delete.Controls
- children
- 0
- name: Button
- attrs
- Id: btnTableDelete
- Command: 0x6C7624AB
- Image32by32: IMGMAP@one@TableDeleteTablePH
- Image16by16: IMGMAP@one@TableDeleteTablePS
- LabelText: STR@L_DeleteTable
- TemplateAlias: button1
- 1
- name: Button
- attrs
- Id: btnColumnDelete
- Command: 0xB1CE5D9F
- Image32by32: IMGMAP@one@TableDeleteColumnPH
- Image16by16: IMGMAP@one@TableDeleteColumnPS
- LabelText: STR@L_DeleteColumn
- TemplateAlias: button2
- 2
- name: Button
- attrs
- Id: btnRowDelete
- Command: 0x518E0B87
- Image32by32: IMGMAP@one@TableDeleteRowPH
- Image16by16: IMGMAP@one@TableDeleteRowPS
- LabelText: STR@L_DeleteRow
- TemplateAlias: button3
- 3
- name: FlyoutAnchor
- attrs
- Alt: STR@L_Delete
- Id: idTableDelete
- Image32by32: IMGMAP@one@TableDeleteTablePH
- LabelText: STR@L_Delete
- ImageArrow: IMGMAP@one@SplitButtonArrow
- TemplateAlias: flyout
- children
- 0
- name: Menu
- attrs
- Id: menuTableDelete
- children
- 0
- name: MenuSection
- attrs
- Id: msTableDelete
- DisplayMode: Menu16
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.DeleteMenu.Controls
- children
- 0
- name: Button
- attrs
- Id: btnTableDelete
- Command: 0x6C7624AB
- Image32by32: IMGMAP@one@TableDeleteTablePH
- Image16by16: IMGMAP@one@TableDeleteTablePS
- LabelText: STR@L_DeleteTable
- 1
- name: Button
- attrs
- Id: btnColumnDelete
- Command: 0xB1CE5D9F
- Image32by32: IMGMAP@one@TableDeleteColumnPH
- Image16by16: IMGMAP@one@TableDeleteColumnPS
- LabelText: STR@L_DeleteColumn
- 2
- name: Button
- attrs
- Id: btnRowDelete
- Command: 0x518E0B87
- Image32by32: IMGMAP@one@TableDeleteRowPH
- Image16by16: IMGMAP@one@TableDeleteRowPS
- LabelText: STR@L_DeleteRow
- 2
- name: Group
- attrs
- Id: ContextualTabs.Tables.Layout.Insert
- Description:
- Title: STR@L_GroupInsert
- Template: tmpFourButton
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.Insert.Controls
- children
- 0
- name: Button
- attrs
- Id: btnInsertRowAbove
- Command: 0x8138CF12
- Image32by32: IMGMAP@one@TableInsertRowAbovePH
- Image16by16: IMGMAP@one@TableInsertRowAbovePS
- LabelText: STR@L_InsertAbove
- TemplateAlias: button1
- 1
- name: Button
- attrs
- Id: btnInsertRowBelow
- Command: 0xDD172B5E
- Image32by32: IMGMAP@one@TableInsertRowBelowPH
- Image16by16: IMGMAP@one@TableInsertRowBelowPS
- LabelText: STR@L_InsertBelow
- TemplateAlias: button2
- 2
- name: Button
- attrs
- Id: btnInsertColumnLeft
- Command: 0x3C041B80
- Image32by32: IMGMAP@one@TableInsertColumnLeftPH
- Image16by16: IMGMAP@one@TableInsertColumnLeftPS
- LabelText: STR@L_InsertLeft
- TemplateAlias: button3
- 3
- name: Button
- attrs
- Id: btnInsertColumnRight
- Command: 0x6773C219
- Image32by32: IMGMAP@one@TableInsertColumnRightPH
- Image16by16: IMGMAP@one@TableInsertColumnRightPS
- LabelText: STR@L_InsertRight
- TemplateAlias: button4
- 3
- name: Group
- attrs
- Id: ContextualTabs.Tables.Layout.Borders
- Description:
- Title: STR@L_GroupBorders
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.Borders.Controls
- children
- 0
- name: ToggleButton
- attrs
- Id: btnHideBorders
- Command: 0x6C020651
- QueryCommand: 0x0B155E1B
- Image32by32: IMGMAP@one@TableHideBordersPH
- LabelText: STR@L_HideBorders
- Alt: STR@L_HideBorders
- TemplateAlias: button1
- 4
- name: Group
- attrs
- Id: ContextualTabs.Tables.Layout.Alignment
- Description:
- Title: STR@L_GroupAlignment
- Template: tmpThreeButton
- children
- 0
- name: Controls
- attrs
- Id: ContextualTabs.Tables.Layout.Alignment.Controls
- children
- 0
- name: ToggleButton
- attrs
- Id: LeftJustify
- Command: 0x6F4BD314
- QueryCommand: 0xE25D77A3
- Image16by16: IMGMAP@one@LeftJustifyPS
- Image32by32: IMGMAP@one@NoIconYetPH
- LabelText: STR@L_AlignLeft
- Alt: STR@L_AlignTextLeft
- TemplateAlias: button1
- 1
- name: ToggleButton
- attrs
- Id: CenterJustify
- Command: 0xC6A376F8
- QueryCommand: 0xC27E85BB
- Image16by16: IMGMAP@one@CenteredPS
- Image32by32: IMGMAP@one@NoIconYetPH
- LabelText: STR@L_JustifyCenter
- Alt: STR@L_JustifyCenter
- TemplateAlias: button2
- 2
- name: ToggleButton
- attrs
- Id: RightJustify
- Command: 0xD59F0217
- QueryCommand: 0x776E8734
- Image16by16: IMGMAP@one@RightJustifyPS
- Image32by32: IMGMAP@one@NoIconYetPH
- LabelText: STR@L_AlignRight
- Alt: STR@L_AlignTextRight
- TemplateAlias: button3
- 1
- name: ContextualGroup
- attrs
- Color: Magenta
- ContextualGroupId: cgidPictureToolsGroup
- Id: cgrpPictureToolsGroup
- Command: 0xD2057E46
- Title: STR@L_TabPictureTools
- children
- 0
- name: Tab
- attrs
- Id: ctabPictureTools
- Description:
- Title: STR@L_TabFormatPicture
- children
- 0
- name: Scaling
- attrs
- children
- 0
- name: MaxSize
- attrs
- Id: grpImageText.Scaling.MaxSize
- Sequence: 10
- GroupId: grpImageText
- Size: Large
- 1
- name: MaxSize
- attrs
- Id: grpImageSize.Scaling.MaxSize
- Sequence: 20
- GroupId: grpImageSize
- Size: Large
- 1
- name: Groups
- attrs
- children
- 0
- name: Group
- attrs
- Id: grpImageText
- Description:
- Title: STR@L_GroupImageText
- Template: tmpOneButton
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: Button
- attrs
- Id: btnAltText
- Command: 0x288DC156
- Image32by32: IMGMAP@one@NoIconYetPH
- Image16by16: IMGMAP@one@NoIconYetPS
- LabelText: STR@L_AltText
- TemplateAlias: button1
- 1
- name: Group
- attrs
- Id: grpImageSize
- Description:
- Title: STR@L_GroupImageSize
- Template: tmpImageSize
- children
- 0
- name: Controls
- attrs
- children
- 0
- name: Button
- attrs
- Id: btnImageGrow
- Command: 0x464C6D12
- Image16by16: IMGMAP@one@NoIconYetPS
- LabelText: STR@L_Grow
- TemplateAlias: grow
- 1
- name: Button
- attrs
- Id: btnImageShrink
- Command: 0xF571A3C0
- Image16by16: IMGMAP@one@NoIconYetPS
- LabelText: STR@L_Shrink
- TemplateAlias: shrink
- 2
- name: Label
- attrs
- Id: lblScale
- LabelText: STR@L_PictureScaleLabel
- TemplateAlias: scaleLabel
- 3
- name: Spinner
- attrs
- Id: spnSize
- DefaultUnit: percent
- DefaultValue: 100
- ImageUpArrow: IMGMAP@one@PickerArrowUp
- AltUpArrow: STR@L_More
- ImageDownArrow: IMGMAP@one@PickerArrow
- AltDownArrow: STR@L_Less
- AccelerationInterval: 125
- MultiplierInterval: 2000
- Command: 0x50D14FC5
- QueryCommand: 0x3276C7D7
- TemplateAlias: spinner
- children
- 0
- name: Unit
- attrs
- Name: percent
- MinimumValue: .1
- MaximumValue: 128000
- DecimalDigits: 1
- Interval: 1
- children
- 0
- name: UnitAbbreviation
- attrs
- Value: %
- 3
- name: Templates
- attrs
- children
- 0
- name: RibbonTemplates
- attrs
- Id: OneNote.Templates
- children
- 0
- name: GroupTemplate
- attrs
- Id: tmpOneButton
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: GroupTemplate
- attrs
- Id: tmpTwoButton
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Large
- 2
- name: GroupTemplate
- attrs
- Id: tmpThreeButton
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Large
- 2
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Large
- 1
- name: Layout
- attrs
- Title: Medium
- children
- 0
- name: Section
- attrs
- Type: ThreeRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Medium
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Medium
- 2
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Medium
- 2
- name: Layout
- attrs
- Title: Small
- children
- 0
- name: Section
- attrs
- Type: ThreeRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Small
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Small
- 2
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Small
- 3
- name: Layout
- attrs
- Title: Collapsed
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: flyout
- DisplayMode: Large
- 3
- name: GroupTemplate
- attrs
- Id: tmpFourButton
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Large
- 2
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Large
- 3
- name: ControlRef
- attrs
- TemplateAlias: button4
- DisplayMode: Large
- 1
- name: Layout
- attrs
- Title: Medium
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: Section
- attrs
- Type: ThreeRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Medium
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Medium
- 2
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button4
- DisplayMode: Medium
- 2
- name: Layout
- attrs
- Title: Small
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: Section
- attrs
- Type: ThreeRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Small
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Small
- 2
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button4
- DisplayMode: Small
- 3
- name: Layout
- attrs
- Title: Collapsed
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: flyout
- DisplayMode: Large
- 4
- name: GroupTemplate
- attrs
- Id: tmpFiveButton
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: button1
- DisplayMode: Large
- 1
- name: ControlRef
- attrs
- TemplateAlias: button2
- DisplayMode: Large
- 2
- name: ControlRef
- attrs
- TemplateAlias: button3
- DisplayMode: Large
- 3
- name: ControlRef
- attrs
- TemplateAlias: button4
- DisplayMode: Large
- 4
- name: ControlRef
- attrs
- TemplateAlias: button5
- DisplayMode: Large
- 5
- name: GroupTemplate
- attrs
- Id: tmpClipboard
- children
- 0
- name: Layout
- attrs
- Title: LargeMedium
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: paste
- DisplayMode: Large
- 1
- name: Section
- attrs
- Type: TwoRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: cut
- DisplayMode: Medium
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: copy
- DisplayMode: Medium
- 1
- name: Layout
- attrs
- Title: LargeSmall
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: paste
- DisplayMode: Large
- 1
- name: Section
- attrs
- Type: TwoRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: cut
- DisplayMode: Small
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: copy
- DisplayMode: Small
- 6
- name: GroupTemplate
- attrs
- Id: tmpBasicText
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: TwoRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: font
- DisplayMode: Medium
- 1
- name: ControlRef
- attrs
- TemplateAlias: fontSize
- DisplayMode: Medium
- 2
- name: ControlRef
- attrs
- TemplateAlias: bullets
- DisplayMode: Small
- 3
- name: ControlRef
- attrs
- TemplateAlias: numbering
- DisplayMode: Small
- 4
- name: ControlRef
- attrs
- TemplateAlias: clearformat
- DisplayMode: Small
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: bold
- DisplayMode: Small
- 1
- name: ControlRef
- attrs
- TemplateAlias: italic
- DisplayMode: Small
- 2
- name: ControlRef
- attrs
- TemplateAlias: underline
- DisplayMode: Small
- 3
- name: ControlRef
- attrs
- TemplateAlias: strikethrough
- DisplayMode: Small
- 4
- name: ControlRef
- attrs
- TemplateAlias: subscript
- DisplayMode: Small
- 5
- name: ControlRef
- attrs
- TemplateAlias: fontBackgroundColor
- DisplayMode: Small
- 6
- name: ControlRef
- attrs
- TemplateAlias: fontColor
- DisplayMode: Small
- 7
- name: ControlRef
- attrs
- TemplateAlias: outdent
- DisplayMode: Small
- 8
- name: ControlRef
- attrs
- TemplateAlias: indent
- DisplayMode: Small
- 9
- name: ControlRef
- attrs
- TemplateAlias: alignment
- DisplayMode: Small
- 7
- name: GroupTemplate
- attrs
- Id: tmpImageSize
- children
- 0
- name: Layout
- attrs
- Title: Large
- children
- 0
- name: Section
- attrs
- Type: TwoRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: grow
- DisplayMode: Medium
- 1
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: shrink
- DisplayMode: Medium
- 1
- name: Section
- attrs
- Type: Divider
- 2
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: scaleLabel
- DisplayMode: Medium
- 1
- name: ControlRef
- attrs
- TemplateAlias: spinner
- DisplayMode: Medium
- 8
- name: GroupTemplate
- attrs
- Id: tmpStyles
- children
- 0
- name: Layout
- attrs
- Title: 5style
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: preview1
- DisplayMode: Default
- 1
- name: ControlRef
- attrs
- TemplateAlias: preview2
- DisplayMode: Default
- 2
- name: ControlRef
- attrs
- TemplateAlias: preview3
- DisplayMode: Default
- 3
- name: ControlRef
- attrs
- TemplateAlias: preview4
- DisplayMode: Default
- 4
- name: ControlRef
- attrs
- TemplateAlias: preview5
- DisplayMode: Default
- 5
- name: ControlRef
- attrs
- TemplateAlias: morestyles
- DisplayMode: Large
- 1
- name: Layout
- attrs
- Title: 4style
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: preview1
- DisplayMode: Default
- 1
- name: ControlRef
- attrs
- TemplateAlias: preview2
- DisplayMode: Default
- 2
- name: ControlRef
- attrs
- TemplateAlias: preview3
- DisplayMode: Default
- 3
- name: ControlRef
- attrs
- TemplateAlias: preview4
- DisplayMode: Default
- 4
- name: ControlRef
- attrs
- TemplateAlias: morestyles
- DisplayMode: Large
- 2
- name: Layout
- attrs
- Title: 3style
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: preview1
- DisplayMode: Default
- 1
- name: ControlRef
- attrs
- TemplateAlias: preview2
- DisplayMode: Default
- 2
- name: ControlRef
- attrs
- TemplateAlias: preview3
- DisplayMode: Default
- 3
- name: ControlRef
- attrs
- TemplateAlias: morestyles
- DisplayMode: Large
- 3
- name: Layout
- attrs
- Title: MoreOnly
- children
- 0
- name: Section
- attrs
- Type: OneRow
- children
- 0
- name: Row
- attrs
- children
- 0
- name: ControlRef
- attrs
- TemplateAlias: morestyles
- DisplayMode: Large
|