| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Xml.Linq;
- using System.IO.Packaging;
- using System.IO;
- using System.Drawing;
- using System.Globalization;
- using System.Collections.ObjectModel;
-
- namespace Novacode
- {
- /// <summary>
- /// Represents a Table in a document.
- /// </summary>
- public class Table : InsertBeforeOrAfter
- {
- private Alignment alignment;
- private AutoFit autofit;
- private float[] ColumnWidthsValue;
- /// <summary>
- /// Merge cells in given column starting with startRow and ending with endRow.
- /// </summary>
- /// <remarks>
- /// Added by arudoy patch: 11608
- /// </remarks>
- public void MergeCellsInColumn(int columnIndex, int startRow, int endRow)
- {
- // Check for valid start and end indexes.
- if (columnIndex < 0 || columnIndex >= ColumnCount)
- throw new IndexOutOfRangeException();
-
- if (startRow < 0 || endRow <= startRow || endRow >= Rows.Count)
- throw new IndexOutOfRangeException();
- // Foreach each Cell between startIndex and endIndex inclusive.
- foreach (Row row in Rows.Where((z, i) => i > startRow && i <= endRow))
- {
- Cell c = row.Cells[columnIndex];
- XElement tcPr = c.Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- c.Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = c.Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- XElement vMerge = tcPr.Element(XName.Get("vMerge", DocX.w.NamespaceName));
- if (vMerge == null)
- {
- tcPr.SetElementValue(XName.Get("vMerge", DocX.w.NamespaceName), string.Empty);
- vMerge = tcPr.Element(XName.Get("vMerge", DocX.w.NamespaceName));
- }
- }
-
- /*
- * Get the tcPr (table cell properties) element for the first cell in this merge,
- * null will be returned if no such element exists.
- */
- XElement start_tcPr = null;
- if (columnIndex > Rows[startRow].Cells.Count)
- start_tcPr = Rows[startRow].Cells[Rows[startRow].Cells.Count - 1].Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- else
- start_tcPr = Rows[startRow].Cells[columnIndex].Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (start_tcPr == null)
- {
- Rows[startRow].Cells[columnIndex].Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- start_tcPr = Rows[startRow].Cells[columnIndex].Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the gridSpan element of this row,
- * null will be returned if no such element exists.
- */
- XElement start_vMerge = start_tcPr.Element(XName.Get("vMerge", DocX.w.NamespaceName));
- if (start_vMerge == null)
- {
- start_tcPr.SetElementValue(XName.Get("vMerge", DocX.w.NamespaceName), string.Empty);
- start_vMerge = start_tcPr.Element(XName.Get("vMerge", DocX.w.NamespaceName));
- }
-
- start_vMerge.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), "restart");
- }
-
- /// <summary>
- /// Returns a list of all Paragraphs inside this container.
- /// </summary>
- ///
- public virtual List<Paragraph> Paragraphs
- {
- get
- {
- List<Paragraph> paragraphs = new List<Paragraph>();
-
- foreach (Row r in Rows)
- paragraphs.AddRange(r.Paragraphs);
-
- return paragraphs;
- }
- }
-
- /// <summary>
- /// Returns a list of all Pictures in a Table.
- /// </summary>
- /// <example>
- /// Returns a list of all Pictures in a Table.
- /// <code>
- /// <![CDATA[
- /// // Create a document.
- /// using (DocX document = DocX.Load(@"Test.docx"))
- /// {
- /// // Get the first Table in a document.
- /// Table t = document.Tables[0];
- ///
- /// // Get all of the Pictures in this Table.
- /// List<Picture> pictures = t.Pictures;
- ///
- /// // Save this document.
- /// document.Save();
- /// }
- /// ]]>
- /// </code>
- /// </example>
- public List<Picture> Pictures
- {
- get
- {
- List<Picture> pictures = new List<Picture>();
-
- foreach (Row r in Rows)
- pictures.AddRange(r.Pictures);
-
- return pictures;
- }
- }
-
- /// <summary>
- /// Set the direction of all content in this Table.
- /// </summary>
- /// <param name="direction">(Left to Right) or (Right to Left)</param>
- /// <example>
- /// Set the content direction for all content in a table to RightToLeft.
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"Test.docx"))
- /// {
- /// // Get the first table in a document.
- /// Table table = document.Tables[0];
- ///
- /// // Set the content direction for all content in this table to RightToLeft.
- /// table.SetDirection(Direction.RightToLeft);
- ///
- /// // Save all changes made to this document.
- /// document.Save();
- /// }
- /// </code>
- /// </example>
- public void SetDirection(Direction direction)
- {
- XElement tblPr = GetOrCreate_tblPr();
- tblPr.Add(new XElement(DocX.w + "bidiVisual"));
-
- foreach (Row r in Rows)
- r.SetDirection(direction);
- }
-
- /// <summary>
- /// Get all of the Hyperlinks in this Table.
- /// </summary>
- /// <example>
- /// Get all of the Hyperlinks in this Table.
- /// <code>
- /// // Create a document.
- /// using (DocX document = DocX.Load(@"Test.docx"))
- /// {
- /// // Get the first Table in this document.
- /// Table t = document.Tables[0];
- ///
- /// // Get a list of all Hyperlinks in this Table.
- /// List<Hyperlink> hyperlinks = t.Hyperlinks;
- ///
- /// // Save this document.
- /// document.Save();
- /// }
- /// </code>
- /// </example>
- public List<Hyperlink> Hyperlinks
- {
- get
- {
- List<Hyperlink> hyperlinks = new List<Hyperlink>();
-
- foreach (Row r in Rows)
- hyperlinks.AddRange(r.Hyperlinks);
-
- return hyperlinks;
- }
- }
-
- public void SetWidths(float[] widths)
- {
- this.ColumnWidthsValue = widths;
- //set widths for existing rows
- foreach (var r in Rows)
- {
- for (var c = 0; c < widths.Length; c++)
- {
- if (r.Cells.Count > c)
- r.Cells[c].Width = widths[c];
- }
-
- }
- }
-
- /// <summary>
- /// Set Table column width by prescribing percent
- /// </summary>
- /// <param name="widthsPercentage">column width % list</param>
- /// <param name="totalWidth">Total table width. Will be calculated if null sent.</param>
- public void SetWidthsPercentage(float[] widthsPercentage, float? totalWidth)
- {
- if (totalWidth == null) totalWidth = this.Document.PageWidth - this.Document.MarginLeft - this.Document.MarginRight; // calculate total table width
- List<float> widths = new List<float>(widthsPercentage.Length); // empty list, will hold actual width
- widthsPercentage.ToList().ForEach(pWidth => { widths.Add(pWidth * totalWidth.Value / 100); }); // convert percentage to actual width for all values in array
- SetWidths(widths.ToArray()); // set actual column width
- }
-
-
- /// <summary>
- /// If the tblPr element doesent exist it is created, either way it is returned by this function.
- /// </summary>
- /// <returns>The tblPr element for this Table.</returns>
- internal XElement GetOrCreate_tblPr()
- {
- // Get the element.
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
-
- // If it dosen't exist, create it.
- if (tblPr == null)
- {
- Xml.AddFirst(new XElement(XName.Get("tblPr", DocX.w.NamespaceName)));
- tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- }
-
- // Return the pPr element for this Paragraph.
- return tblPr;
- }
-
- /// <summary>
- /// Set the specified cell margin for the table-level.
- /// </summary>
- /// <param name="type">The side of the cell margin.</param>
- /// <param name="margin">The value for the specified cell margin.</param>
- /// <remarks>More information can be found <see cref="http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.tablecellmargindefault.aspx">here</see></remarks>
- public void SetTableCellMargin(TableCellMarginType type, double margin)
- {
- XElement tblPr = GetOrCreate_tblPr();
-
- // find (or create) the element with the cell margins
- XElement tblCellMar = tblPr.Element(XName.Get("tblCellMar", DocX.w.NamespaceName));
- if (tblCellMar == null)
- {
- tblPr.AddFirst(new XElement(XName.Get("tblCellMar", DocX.w.NamespaceName)));
- tblCellMar = tblPr.Element(XName.Get("tblCellMar", DocX.w.NamespaceName));
- }
-
- // find (or create) the element with cell margin for the specified side
- XElement tblMargin = tblCellMar.Element(XName.Get(type.ToString(), DocX.w.NamespaceName));
- if (tblMargin == null)
- {
- tblCellMar.AddFirst(new XElement(XName.Get(type.ToString(), DocX.w.NamespaceName)));
- tblMargin = tblCellMar.Element(XName.Get(type.ToString(), DocX.w.NamespaceName));
- }
-
- tblMargin.RemoveAttributes();
- // set the value for the cell margin
- tblMargin.Add(new XAttribute(XName.Get("w", DocX.w.NamespaceName), margin));
- // set the side of cell margin
- tblMargin.Add(new XAttribute(XName.Get("type", DocX.w.NamespaceName), "dxa"));
- }
-
- /// <summary>
- /// Gets the column width for a given column index.
- /// </summary>
- /// <param name="index"></param>
- public Double GetColumnWidth(Int32 index)
- {
- List<Double> widths = ColumnWidths;
- if (widths == null || index > widths.Count - 1) return Double.NaN;
-
- return widths[index];
- }
-
- /// <summary>
- /// Sets the column width for the given index.
- /// </summary>
- /// <param name="index">Column index</param>
- /// <param name="width">Colum width</param>
- public void SetColumnWidth(Int32 index, Double width)
- {
- List<Double> widths = ColumnWidths;
- if (widths == null || index > widths.Count - 1)
- {
- if (Rows.Count == 0) throw new Exception("There is at least one row required to detect the existing columns.");
- // use width of last row cells
- // may not work for merged cell!
- widths = new List<Double>();
- foreach (Cell c in Rows[Rows.Count - 1].Cells)
- {
- widths.Add(c.Width);
- }
- }
-
- // check if index is matching table columns
- if (index > widths.Count - 1) throw new Exception("The index is greather than the available table columns.");
-
- // get the table grid props
- XElement grid = Xml.Element(XName.Get("tblGrid", DocX.w.NamespaceName));
- // if null; append a new grid below tblPr
- if (grid == null)
- {
- XElement tblPr = GetOrCreate_tblPr();
- tblPr.AddAfterSelf(new XElement(XName.Get("tblGrid", DocX.w.NamespaceName)));
- grid = Xml.Element(XName.Get("tblGrid", DocX.w.NamespaceName));
- }
-
- // remove all existing values
- grid.RemoveAll();
-
- // append new column widths
- XElement gridCol = null;
- Int32 i = 0;
- Double value = width;
- Double total = 0;
- foreach (var w in widths)
- {
- value = w;
- if (i == index) value = width;
- gridCol = new XElement(XName.Get("gridCol", DocX.w.NamespaceName),
- new XAttribute(XName.Get("w", DocX.w.NamespaceName), value));
- grid.Add(gridCol);
- i += 1;
- total += value;
- }
-
- // remove cell widths
- foreach (Row r in Rows)
- foreach (Cell c in r.Cells)
- c.Width = -1;
-
- // set fitting to fixed; this will add/set additional table properties
- this.AutoFit = AutoFit.Fixed;
- }
-
-
- /// <summary>
- /// Gets a list of all column widths for this table.
- /// </summary>
- public List<Double> ColumnWidths
- {
- get
- {
- List<Double> widths = new List<Double>();
- // get the table grid props
- XElement grid = Xml.Element(XName.Get("tblGrid", DocX.w.NamespaceName));
- if (grid == null) return null;
-
- // get col properties
- var cols = grid.Elements(XName.Get("gridCol", DocX.w.NamespaceName));
- if (cols == null) return null;
-
- String value = String.Empty;
- foreach (var col in cols)
- {
- value = col.GetAttribute(XName.Get("w", DocX.w.NamespaceName));
- widths.Add(Convert.ToDouble(value));
- }
- return widths;
- }
- }
-
-
- /// <summary>
- /// Returns the number of rows in this table.
- /// </summary>
- public Int32 RowCount
- {
- get
- {
- return Xml.Elements(XName.Get("tr", DocX.w.NamespaceName)).Count();
- }
- }
-
- private int _cachedColCount = -1;
- /// <summary>
- /// Returns the number of columns in this table.
- /// </summary>
- public Int32 ColumnCount
- {
- get
- {
- if (RowCount == 0)
- return 0;
- if (_cachedColCount == -1)
- _cachedColCount = Rows.First().ColumnCount;
- return _cachedColCount;
- }
- }
-
- /// <summary>
- /// Returns a list of rows in this table.
- /// </summary>
- public List<Row> Rows
- {
- get
- {
- List<Row> rows =
- (
- from r in Xml.Elements(XName.Get("tr", DocX.w.NamespaceName))
- select new Row(this, Document, r)
- ).ToList();
-
- return rows;
- }
- }
-
- private TableDesign design;
-
-
- internal Table(DocX document, XElement xml)
- : base(document, xml)
- {
- autofit = AutoFit.ColumnWidth;
- this.Xml = xml;
- this.mainPart = document.mainPart;
-
- XElement properties = xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
-
- XElement style = properties.Element(XName.Get("tblStyle", DocX.w.NamespaceName));
- if (style != null)
- {
- XAttribute val = style.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- if (val != null)
- {
- try
- {
- design = (TableDesign)Enum.Parse(typeof(TableDesign), val.Value.Replace("-", string.Empty));
- }
-
- catch (Exception)
- {
- design = TableDesign.Custom;
- }
- }
- else
- design = TableDesign.None;
- }
-
- else
- design = TableDesign.None;
-
- XElement tableLook = properties.Element(XName.Get("tblLook", DocX.w.NamespaceName));
- if (tableLook != null)
- {
- TableLook = new TableLook();
- TableLook.FirstRow = tableLook.GetAttribute(XName.Get("firstRow", DocX.w.NamespaceName)) == "1";
- TableLook.LastRow = tableLook.GetAttribute(XName.Get("lastRow", DocX.w.NamespaceName)) == "1";
- TableLook.FirstColumn = tableLook.GetAttribute(XName.Get("firstColumn", DocX.w.NamespaceName)) == "1";
- TableLook.LastColumn = tableLook.GetAttribute(XName.Get("lastColumn", DocX.w.NamespaceName)) == "1";
- TableLook.NoHorizontalBanding = tableLook.GetAttribute(XName.Get("noHBand", DocX.w.NamespaceName)) == "1";
- TableLook.NoVerticalBanding = tableLook.GetAttribute(XName.Get("noVBand", DocX.w.NamespaceName)) == "1";
- }
-
- }
- /// <summary>
- /// Extra property for Custom Table Style provided by carpfisher - Thanks
- /// </summary>
- private string _customTableDesignName;
- /// <summary>
- /// Extra property for Custom Table Style provided by carpfisher - Thanks
- /// </summary>
- public string CustomTableDesignName
- {
- set
- {
- _customTableDesignName = value;
- this.Design = TableDesign.Custom;
- }
-
- get
- {
- return _customTableDesignName;
- }
- }
-
- /// <summary>
- /// String containing the Table Caption value (the table's Alternate Text Title)
- /// </summary>
- private string _tableCaption;
- /// <summary>
- /// Gets or Sets the value of the Table Caption (Alternate Text Title) of this table.
- /// </summary>
- public string TableCaption
- {
- set
- {
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr != null)
- {
- XElement tblCaption =
- tblPr.Descendants(XName.Get("tblCaption", DocX.w.NamespaceName)).FirstOrDefault();
-
- if (tblCaption != null)
- tblCaption.Remove();
-
- tblCaption = new XElement(XName.Get("tblCaption", DocX.w.NamespaceName),
- new XAttribute(XName.Get("val", DocX.w.NamespaceName), value));
- tblPr.Add(tblCaption);
- }
- }
-
- get
- {
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr != null)
- {
- XElement caption = tblPr.Element(XName.Get("tblCaption", DocX.w.NamespaceName));
- if (caption != null)
- {
- _tableCaption = caption.GetAttribute(XName.Get("val", DocX.w.NamespaceName));
- }
- }
- return _tableCaption;
- }
- }
-
- /// <summary>
- /// String containing the Table Description (the table's Alternate Text Description).
- /// </summary>
- private string _tableDescription;
- /// <summary>
- /// Gets or Sets the value of the Table Description (Alternate Text Description) of this table.
- /// </summary>
- public string TableDescription
- {
- set
- {
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr != null)
- {
- XElement tblDescription =
- tblPr.Descendants(XName.Get("tblDescription", DocX.w.NamespaceName)).FirstOrDefault();
-
- if (tblDescription != null)
- tblDescription.Remove();
-
- tblDescription = new XElement(XName.Get("tblDescription", DocX.w.NamespaceName),
- new XAttribute(XName.Get("val", DocX.w.NamespaceName), value));
- tblPr.Add(tblDescription);
- }
- }
-
- get
- {
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr != null)
- {
- XElement caption = tblPr.Element(XName.Get("tblDescription", DocX.w.NamespaceName));
- if (caption != null)
- {
- _tableDescription = caption.GetAttribute(XName.Get("val", DocX.w.NamespaceName));
- }
- }
- return _tableDescription;
- }
- }
-
-
- public TableLook TableLook { get; set; }
-
- public Alignment Alignment
- {
- get { return alignment; }
- set
- {
- string alignmentString = string.Empty;
- switch (value)
- {
- case Alignment.left:
- {
- alignmentString = "left";
- break;
- }
-
- case Alignment.both:
- {
- alignmentString = "both";
- break;
- }
-
-
- case Alignment.right:
- {
- alignmentString = "right";
- break;
- }
-
- case Alignment.center:
- {
- alignmentString = "center";
- break;
- }
- }
-
- XElement tblPr = Xml.Descendants(XName.Get("tblPr", DocX.w.NamespaceName)).First();
- XElement jc = tblPr.Descendants(XName.Get("jc", DocX.w.NamespaceName)).FirstOrDefault();
-
- if (jc != null)
- jc.Remove();
-
- jc = new XElement(XName.Get("jc", DocX.w.NamespaceName), new XAttribute(XName.Get("val", DocX.w.NamespaceName), alignmentString));
- tblPr.Add(jc);
- alignment = value;
- }
- }
-
- /// <summary>
- /// Auto size this table according to some rule.
- /// </summary>
- /// <remarks>Added by Roger Saele, April 2012. Thank you for your contribution Roger.</remarks>
- public AutoFit AutoFit
- {
- get { return autofit; }
-
- set
- {
- string tableAttributeValue = string.Empty;
- string columnAttributeValue = string.Empty;
- switch (value)
- {
- case AutoFit.ColumnWidth:
- {
- tableAttributeValue = "auto";
- columnAttributeValue = "dxa";
-
- // Disable "Automatically resize to fit contents" option
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr != null)
- {
- XElement layout = tblPr.Element(XName.Get("tblLayout", DocX.w.NamespaceName));
- if (layout == null)
- {
- tblPr.Add(new XElement(XName.Get("tblLayout", DocX.w.NamespaceName)));
- layout = tblPr.Element(XName.Get("tblLayout", DocX.w.NamespaceName));
- }
-
- XAttribute type = layout.Attribute(XName.Get("type", DocX.w.NamespaceName));
- if (type == null)
- {
- layout.Add(new XAttribute(XName.Get("type", DocX.w.NamespaceName), String.Empty));
- type = layout.Attribute(XName.Get("type", DocX.w.NamespaceName));
- }
-
- type.Value = "fixed";
- }
-
- break;
- }
-
- case AutoFit.Contents:
- {
- tableAttributeValue = columnAttributeValue = "auto";
- break;
- }
-
- case AutoFit.Window:
- {
- tableAttributeValue = columnAttributeValue = "pct";
- break;
- }
-
- case AutoFit.Fixed:
- // DL added - 20150816:
- // Set fixed width for the whole table; columns width is definied in the node: tblGrid
- {
- tableAttributeValue = columnAttributeValue = "dxa";
-
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- XElement tblLayout = tblPr.Element(XName.Get("tblLayout", DocX.w.NamespaceName));
-
- if (tblLayout == null)
- {
- XElement tmp = tblPr.Element(XName.Get("tblInd", DocX.w.NamespaceName));
- if (tmp == null)
- {
- tmp = tblPr.Element(XName.Get("tblW", DocX.w.NamespaceName));
- }
-
- tmp.AddAfterSelf(new XElement(XName.Get("tblLayout", DocX.w.NamespaceName)));
- tmp = tblPr.Element(XName.Get("tblLayout", DocX.w.NamespaceName));
- tmp.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "fixed");
-
- tmp = tblPr.Element(XName.Get("tblW", DocX.w.NamespaceName));
- Double i = 0;
- foreach (Double w in ColumnWidths)
- i += w;
-
- tmp.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), i.ToString());
-
-
- break;
-
- }
- else
- {
- var qry = from d in Xml.Descendants()
- let type = d.Attribute(XName.Get("type", DocX.w.NamespaceName))
- where (d.Name.LocalName == "tblLayout") && type != null
- select type;
-
- foreach (XAttribute type in qry)
- type.Value = "fixed";
-
-
- XElement tmp = tblPr.Element(XName.Get("tblW", DocX.w.NamespaceName));
- Double i = 0;
- foreach (Double w in ColumnWidths)
- i += w;
-
- tmp.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), i.ToString());
- break;
- }
-
- }
- }
-
- // Set table attributes
- var query = from d in Xml.Descendants()
- let type = d.Attribute(XName.Get("type", DocX.w.NamespaceName))
- where (d.Name.LocalName == "tblW") && type != null
- select type;
-
- foreach (XAttribute type in query)
- type.Value = tableAttributeValue;
-
- // Set column attributes
- query = from d in Xml.Descendants()
- let type = d.Attribute(XName.Get("type", DocX.w.NamespaceName))
- where (d.Name.LocalName == "tcW") && type != null
- select type;
-
- foreach (XAttribute type in query)
- type.Value = columnAttributeValue;
-
- autofit = value;
- }
- }
- /// <summary>
- /// The design\style to apply to this table.
- ///
- /// Patch1. Patch to code for Custom Table Style support by carpfisher
- /// </summary>
- /// <example>
- /// Example code for custom table style usage
- ///
- /// <code>
- /// Novacode.DocX document = Novacode.DocX.Load(“DOC01.doc”); // load document with custom table style defined
- /// Novacode.Table t = document.AddTable(2, 2); // adds table
- /// t.CustomTableDesignName = “MyStyle01”; // assigns Custom Table Design style to newly created table
- /// </code>
- /// </example>
- ///
- ///
- ///
- public TableDesign Design
- {
- get { return design; }
- set
- {
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- XElement style = tblPr.Element(XName.Get("tblStyle", DocX.w.NamespaceName));
- if (style == null)
- {
- tblPr.Add(new XElement(XName.Get("tblStyle", DocX.w.NamespaceName)));
- style = tblPr.Element(XName.Get("tblStyle", DocX.w.NamespaceName));
- }
-
- XAttribute val = style.Attribute(XName.Get("val", DocX.w.NamespaceName));
- if (val == null)
- {
- style.Add(new XAttribute(XName.Get("val", DocX.w.NamespaceName), ""));
- val = style.Attribute(XName.Get("val", DocX.w.NamespaceName));
- }
-
- design = value;
-
- if (design == TableDesign.None)
- {
- if (style != null)
- style.Remove();
- }
-
- if (design == TableDesign.Custom)
- {
- if (string.IsNullOrEmpty(_customTableDesignName))
- {
- design = TableDesign.None;
- if (style != null)
- style.Remove();
-
- }
- else
- {
- val.Value = _customTableDesignName;
- }
- }
- else
- {
-
- switch (design)
- {
- case TableDesign.TableNormal:
- val.Value = "TableNormal";
- break;
- case TableDesign.TableGrid:
- val.Value = "TableGrid";
- break;
- case TableDesign.LightShading:
- val.Value = "LightShading";
- break;
- case TableDesign.LightShadingAccent1:
- val.Value = "LightShading-Accent1";
- break;
- case TableDesign.LightShadingAccent2:
- val.Value = "LightShading-Accent2";
- break;
- case TableDesign.LightShadingAccent3:
- val.Value = "LightShading-Accent3";
- break;
- case TableDesign.LightShadingAccent4:
- val.Value = "LightShading-Accent4";
- break;
- case TableDesign.LightShadingAccent5:
- val.Value = "LightShading-Accent5";
- break;
- case TableDesign.LightShadingAccent6:
- val.Value = "LightShading-Accent6";
- break;
- case TableDesign.LightList:
- val.Value = "LightList";
- break;
- case TableDesign.LightListAccent1:
- val.Value = "LightList-Accent1";
- break;
- case TableDesign.LightListAccent2:
- val.Value = "LightList-Accent2";
- break;
- case TableDesign.LightListAccent3:
- val.Value = "LightList-Accent3";
- break;
- case TableDesign.LightListAccent4:
- val.Value = "LightList-Accent4";
- break;
- case TableDesign.LightListAccent5:
- val.Value = "LightList-Accent5";
- break;
- case TableDesign.LightListAccent6:
- val.Value = "LightList-Accent6";
- break;
- case TableDesign.LightGrid:
- val.Value = "LightGrid";
- break;
- case TableDesign.LightGridAccent1:
- val.Value = "LightGrid-Accent1";
- break;
- case TableDesign.LightGridAccent2:
- val.Value = "LightGrid-Accent2";
- break;
- case TableDesign.LightGridAccent3:
- val.Value = "LightGrid-Accent3";
- break;
- case TableDesign.LightGridAccent4:
- val.Value = "LightGrid-Accent4";
- break;
- case TableDesign.LightGridAccent5:
- val.Value = "LightGrid-Accent5";
- break;
- case TableDesign.LightGridAccent6:
- val.Value = "LightGrid-Accent6";
- break;
- case TableDesign.MediumShading1:
- val.Value = "MediumShading1";
- break;
- case TableDesign.MediumShading1Accent1:
- val.Value = "MediumShading1-Accent1";
- break;
- case TableDesign.MediumShading1Accent2:
- val.Value = "MediumShading1-Accent2";
- break;
- case TableDesign.MediumShading1Accent3:
- val.Value = "MediumShading1-Accent3";
- break;
- case TableDesign.MediumShading1Accent4:
- val.Value = "MediumShading1-Accent4";
- break;
- case TableDesign.MediumShading1Accent5:
- val.Value = "MediumShading1-Accent5";
- break;
- case TableDesign.MediumShading1Accent6:
- val.Value = "MediumShading1-Accent6";
- break;
- case TableDesign.MediumShading2:
- val.Value = "MediumShading2";
- break;
- case TableDesign.MediumShading2Accent1:
- val.Value = "MediumShading2-Accent1";
- break;
- case TableDesign.MediumShading2Accent2:
- val.Value = "MediumShading2-Accent2";
- break;
- case TableDesign.MediumShading2Accent3:
- val.Value = "MediumShading2-Accent3";
- break;
- case TableDesign.MediumShading2Accent4:
- val.Value = "MediumShading2-Accent4";
- break;
- case TableDesign.MediumShading2Accent5:
- val.Value = "MediumShading2-Accent5";
- break;
- case TableDesign.MediumShading2Accent6:
- val.Value = "MediumShading2-Accent6";
- break;
- case TableDesign.MediumList1:
- val.Value = "MediumList1";
- break;
- case TableDesign.MediumList1Accent1:
- val.Value = "MediumList1-Accent1";
- break;
- case TableDesign.MediumList1Accent2:
- val.Value = "MediumList1-Accent2";
- break;
- case TableDesign.MediumList1Accent3:
- val.Value = "MediumList1-Accent3";
- break;
- case TableDesign.MediumList1Accent4:
- val.Value = "MediumList1-Accent4";
- break;
- case TableDesign.MediumList1Accent5:
- val.Value = "MediumList1-Accent5";
- break;
- case TableDesign.MediumList1Accent6:
- val.Value = "MediumList1-Accent6";
- break;
- case TableDesign.MediumList2:
- val.Value = "MediumList2";
- break;
- case TableDesign.MediumList2Accent1:
- val.Value = "MediumList2-Accent1";
- break;
- case TableDesign.MediumList2Accent2:
- val.Value = "MediumList2-Accent2";
- break;
- case TableDesign.MediumList2Accent3:
- val.Value = "MediumList2-Accent3";
- break;
- case TableDesign.MediumList2Accent4:
- val.Value = "MediumList2-Accent4";
- break;
- case TableDesign.MediumList2Accent5:
- val.Value = "MediumList2-Accent5";
- break;
- case TableDesign.MediumList2Accent6:
- val.Value = "MediumList2-Accent6";
- break;
- case TableDesign.MediumGrid1:
- val.Value = "MediumGrid1";
- break;
- case TableDesign.MediumGrid1Accent1:
- val.Value = "MediumGrid1-Accent1";
- break;
- case TableDesign.MediumGrid1Accent2:
- val.Value = "MediumGrid1-Accent2";
- break;
- case TableDesign.MediumGrid1Accent3:
- val.Value = "MediumGrid1-Accent3";
- break;
- case TableDesign.MediumGrid1Accent4:
- val.Value = "MediumGrid1-Accent4";
- break;
- case TableDesign.MediumGrid1Accent5:
- val.Value = "MediumGrid1-Accent5";
- break;
- case TableDesign.MediumGrid1Accent6:
- val.Value = "MediumGrid1-Accent6";
- break;
- case TableDesign.MediumGrid2:
- val.Value = "MediumGrid2";
- break;
- case TableDesign.MediumGrid2Accent1:
- val.Value = "MediumGrid2-Accent1";
- break;
- case TableDesign.MediumGrid2Accent2:
- val.Value = "MediumGrid2-Accent2";
- break;
- case TableDesign.MediumGrid2Accent3:
- val.Value = "MediumGrid2-Accent3";
- break;
- case TableDesign.MediumGrid2Accent4:
- val.Value = "MediumGrid2-Accent4";
- break;
- case TableDesign.MediumGrid2Accent5:
- val.Value = "MediumGrid2-Accent5";
- break;
- case TableDesign.MediumGrid2Accent6:
- val.Value = "MediumGrid2-Accent6";
- break;
- case TableDesign.MediumGrid3:
- val.Value = "MediumGrid3";
- break;
- case TableDesign.MediumGrid3Accent1:
- val.Value = "MediumGrid3-Accent1";
- break;
- case TableDesign.MediumGrid3Accent2:
- val.Value = "MediumGrid3-Accent2";
- break;
- case TableDesign.MediumGrid3Accent3:
- val.Value = "MediumGrid3-Accent3";
- break;
- case TableDesign.MediumGrid3Accent4:
- val.Value = "MediumGrid3-Accent4";
- break;
- case TableDesign.MediumGrid3Accent5:
- val.Value = "MediumGrid3-Accent5";
- break;
- case TableDesign.MediumGrid3Accent6:
- val.Value = "MediumGrid3-Accent6";
- break;
-
- case TableDesign.DarkList:
- val.Value = "DarkList";
- break;
- case TableDesign.DarkListAccent1:
- val.Value = "DarkList-Accent1";
- break;
- case TableDesign.DarkListAccent2:
- val.Value = "DarkList-Accent2";
- break;
- case TableDesign.DarkListAccent3:
- val.Value = "DarkList-Accent3";
- break;
- case TableDesign.DarkListAccent4:
- val.Value = "DarkList-Accent4";
- break;
- case TableDesign.DarkListAccent5:
- val.Value = "DarkList-Accent5";
- break;
- case TableDesign.DarkListAccent6:
- val.Value = "DarkList-Accent6";
- break;
-
- case TableDesign.ColorfulShading:
- val.Value = "ColorfulShading";
- break;
- case TableDesign.ColorfulShadingAccent1:
- val.Value = "ColorfulShading-Accent1";
- break;
- case TableDesign.ColorfulShadingAccent2:
- val.Value = "ColorfulShading-Accent2";
- break;
- case TableDesign.ColorfulShadingAccent3:
- val.Value = "ColorfulShading-Accent3";
- break;
- case TableDesign.ColorfulShadingAccent4:
- val.Value = "ColorfulShading-Accent4";
- break;
- case TableDesign.ColorfulShadingAccent5:
- val.Value = "ColorfulShading-Accent5";
- break;
- case TableDesign.ColorfulShadingAccent6:
- val.Value = "ColorfulShading-Accent6";
- break;
-
- case TableDesign.ColorfulList:
- val.Value = "ColorfulList";
- break;
- case TableDesign.ColorfulListAccent1:
- val.Value = "ColorfulList-Accent1";
- break;
- case TableDesign.ColorfulListAccent2:
- val.Value = "ColorfulList-Accent2";
- break;
- case TableDesign.ColorfulListAccent3:
- val.Value = "ColorfulList-Accent3";
- break;
- case TableDesign.ColorfulListAccent4:
- val.Value = "ColorfulList-Accent4";
- break;
- case TableDesign.ColorfulListAccent5:
- val.Value = "ColorfulList-Accent5";
- break;
- case TableDesign.ColorfulListAccent6:
- val.Value = "ColorfulList-Accent6";
- break;
-
- case TableDesign.ColorfulGrid:
- val.Value = "ColorfulGrid";
- break;
- case TableDesign.ColorfulGridAccent1:
- val.Value = "ColorfulGrid-Accent1";
- break;
- case TableDesign.ColorfulGridAccent2:
- val.Value = "ColorfulGrid-Accent2";
- break;
- case TableDesign.ColorfulGridAccent3:
- val.Value = "ColorfulGrid-Accent3";
- break;
- case TableDesign.ColorfulGridAccent4:
- val.Value = "ColorfulGrid-Accent4";
- break;
- case TableDesign.ColorfulGridAccent5:
- val.Value = "ColorfulGrid-Accent5";
- break;
- case TableDesign.ColorfulGridAccent6:
- val.Value = "ColorfulGrid-Accent6";
- break;
-
- default:
- break;
- }
- }
- if (Document.styles == null)
- {
- PackagePart word_styles = Document.package.GetPart(new Uri("/word/styles.xml", UriKind.Relative));
- using (TextReader tr = new StreamReader(word_styles.GetStream()))
- Document.styles = XDocument.Load(tr);
- }
-
- var tableStyle =
- (
- from e in Document.styles.Descendants()
- let styleId = e.Attribute(XName.Get("styleId", DocX.w.NamespaceName))
- where (styleId != null && styleId.Value == val.Value)
- select e
- ).FirstOrDefault();
-
- if (tableStyle == null)
- {
- XDocument external_style_doc = HelperFunctions.DecompressXMLResource("Novacode.Resources.styles.xml.gz");
-
- var styleElement =
- (
- from e in external_style_doc.Descendants()
- let styleId = e.Attribute(XName.Get("styleId", DocX.w.NamespaceName))
- where (styleId != null && styleId.Value == val.Value)
- select e
- ).First();
-
- Document.styles.Element(XName.Get("styles", DocX.w.NamespaceName)).Add(styleElement);
- }
- }
- }
-
- /// <summary>
- /// Returns the index of this Table.
- /// </summary>
- /// <example>
- /// Replace the first table in this document with a new Table.
- /// <code>
- /// // Load a document into memory.
- /// using (DocX document = DocX.Load(@"Test.docx"))
- /// {
- /// // Get the first Table in this document.
- /// Table t = document.Tables[0];
- ///
- /// // Get the character index of Table t in this document.
- /// int index = t.Index;
- ///
- /// // Remove Table t.
- /// t.Remove();
- ///
- /// // Insert a new Table at the original index of Table t.
- /// Table newTable = document.InsertTable(index, 4, 4);
- ///
- /// // Set the design of this new Table, so that we can see it.
- /// newTable.Design = TableDesign.LightShadingAccent1;
- ///
- /// // Save all changes made to the document.
- /// document.Save();
- /// } // Release this document from memory.
- /// </code>
- /// </example>
- public int Index
- {
- get
- {
- int index = 0;
- IEnumerable<XElement> previous = Xml.ElementsBeforeSelf();
-
- foreach (XElement e in previous)
- index += Paragraph.GetElementTextLength(e);
-
- return index;
- }
- }
-
- /// <summary>
- /// Remove this Table from this document.
- /// </summary>
- /// <example>
- /// Remove the first Table from this document.
- /// <code>
- /// // Load a document into memory.
- /// using (DocX document = DocX.Load(@"Test.docx"))
- /// {
- /// // Get the first Table in this document.
- /// Table t = d.Tables[0];
- ///
- /// // Remove this Table.
- /// t.Remove();
- ///
- /// // Save all changes made to the document.
- /// document.Save();
- /// } // Release this document from memory.
- /// </code>
- /// </example>
- public void Remove()
- {
- Xml.Remove();
- }
-
- /// <summary>
- /// Insert a row at the end of this table.
- /// </summary>
- /// <example>
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Insert a new row at the end of this table.
- /// Row row = table.InsertRow();
- ///
- /// // Loop through each cell in this new row.
- /// foreach (Cell c in row.Cells)
- /// {
- /// // Set the text of each new cell to "Hello".
- /// c.Paragraphs[0].InsertText("Hello", false);
- /// }
- ///
- /// // Save the document to a new file.
- /// document.SaveAs(@"C:\Example\Test2.docx");
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- /// <returns>A new row.</returns>
- public Row InsertRow()
- {
- return InsertRow(RowCount);
- }
-
- /// <summary>
- /// Insert a copy of a row at the end of this table.
- /// </summary>
- /// <returns>A new row.</returns>
- public Row InsertRow(Row row)
- {
- return InsertRow(row, RowCount);
- }
-
- /// <summary>
- /// Insert a column to the right of a Table.
- /// </summary>
- /// <example>
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first Table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Insert a new column to this right of this table.
- /// table.InsertColumn();
- ///
- /// // Set the new columns text to "Row no."
- /// table.Rows[0].Cells[table.ColumnCount - 1].Paragraph.InsertText("Row no.", false);
- ///
- /// // Loop through each row in the table.
- /// for (int i = 1; i < table.Rows.Count; i++)
- /// {
- /// // The current row.
- /// Row row = table.Rows[i];
- ///
- /// // The cell in this row that belongs to the new column.
- /// Cell cell = row.Cells[table.ColumnCount - 1];
- ///
- /// // The first Paragraph that this cell houses.
- /// Paragraph p = cell.Paragraphs[0];
- ///
- /// // Insert this rows index.
- /// p.InsertText(i.ToString(), false);
- /// }
- ///
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public void InsertColumn()
- {
- InsertColumn(ColumnCount, true);
- }
-
- /// <summary>
- /// Remove the last row from this Table.
- /// </summary>
- /// <example>
- /// Remove the last row from a Table.
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Remove the last row from this table.
- /// table.RemoveRow();
- ///
- /// // Save the document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public void RemoveRow()
- {
- RemoveRow(RowCount - 1);
- }
-
- /// <summary>
- /// Remove a row from this Table.
- /// </summary>
- /// <param name="index">The row to remove.</param>
- /// <example>
- /// Remove the first row from a Table.
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Remove the first row from this table.
- /// table.RemoveRow(0);
- ///
- /// // Save the document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public void RemoveRow(int index)
- {
- if (index < 0 || index > RowCount - 1)
- throw new IndexOutOfRangeException();
-
- Rows[index].Xml.Remove();
- if (Rows.Count == 0)
- Remove();
- }
-
- /// <summary>
- /// Remove the last column for this Table.
- /// </summary>
- /// <example>
- /// Remove the last column from a Table.
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Remove the last column from this table.
- /// table.RemoveColumn();
- ///
- /// // Save the document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public void RemoveColumn()
- {
- RemoveColumn(ColumnCount - 1);
- }
-
- /// <summary>
- /// Remove a column from this Table.
- /// </summary>
- /// <param name="index">The column to remove.</param>
- /// <example>
- /// Remove the first column from a Table.
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Remove the first column from this table.
- /// table.RemoveColumn(0);
- ///
- /// // Save the document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public void RemoveColumn(int index)
- {
- if (index < 0 || index > ColumnCount - 1)
- throw new IndexOutOfRangeException();
-
- foreach (Row r in Rows)
- r.Cells[index].Xml.Remove();
- _cachedColCount = -1;
- }
-
- /// <summary>
- /// Insert a row into this table.
- /// </summary>
- /// <example>
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Insert a new row at index 1 in this table.
- /// Row row = table.InsertRow(1);
- ///
- /// // Loop through each cell in this new row.
- /// foreach (Cell c in row.Cells)
- /// {
- /// // Set the text of each new cell to "Hello".
- /// c.Paragraphs[0].InsertText("Hello", false);
- /// }
- ///
- /// // Save the document to a new file.
- /// document.SaveAs(@"C:\Example\Test2.docx");
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- /// <param name="index">Index to insert row at.</param>
- /// <returns>A new Row</returns>
- public Row InsertRow(int index)
- {
- if (index < 0 || index > RowCount)
- throw new IndexOutOfRangeException();
-
- List<XElement> content = new List<XElement>();
- for (int i = 0; i < ColumnCount; i++)
- {
- var w = 2310d;
- if (ColumnWidthsValue != null && ColumnWidthsValue.Length > i)
- w = ColumnWidthsValue[i] * 15;
- XElement cell = HelperFunctions.CreateTableCell(w);
- content.Add(cell);
- }
-
- return InsertRow(content, index);
- }
-
- /// <summary>
- /// Insert a copy of a row into this table.
- /// </summary>
- /// <param name="row">Row to copy and insert.</param>
- /// <param name="index">Index to insert row at.</param>
- /// <returns>A new Row</returns>
- public Row InsertRow(Row row, int index)
- {
- if (row == null)
- throw new ArgumentNullException("row");
-
- if (index < 0 || index > RowCount)
- throw new IndexOutOfRangeException();
-
- List<XElement> content = row.Xml.Elements(XName.Get("tc", DocX.w.NamespaceName)).Select(element => HelperFunctions.CloneElement(element)).ToList();
- return InsertRow(content, index);
- }
-
- private Row InsertRow(List<XElement> content, Int32 index)
- {
- Row newRow = new Row(this, Document, new XElement(XName.Get("tr", DocX.w.NamespaceName), content));
-
- XElement rowXml;
- if (index == Rows.Count)
- {
- rowXml = Rows.Last().Xml;
- rowXml.AddAfterSelf(newRow.Xml);
- }
-
- else
- {
- rowXml = Rows[index].Xml;
- rowXml.AddBeforeSelf(newRow.Xml);
- }
-
- return newRow;
- }
-
- /// <summary>
- /// Insert a column into a table.
- /// </summary>
- /// <param name="index">The index to insert the column at.</param>
- /// <param name="direction">The side in which you wish to place the colum(True right, false left)</param>
- /// <example>
- /// Insert a column to the left of a table.
- /// <code>
- /// // Load a document.
- /// using (DocX document = DocX.Load(@"C:\Example\Test.docx"))
- /// {
- /// // Get the first Table in this document.
- /// Table table = document.Tables[0];
- ///
- /// // Insert a new column to this left of this table.
- /// table.InsertColumn(0, false);
- ///
- /// // Set the new columns text to "Row no."
- /// table.Rows[0].Cells[table.ColumnCount - 1].Paragraph.InsertText("Row no.", false);
- ///
- /// // Loop through each row in the table.
- /// for (int i = 1; i < table.Rows.Count; i++)
- /// {
- /// // The current row.
- /// Row row = table.Rows[i];
- ///
- /// // The cell in this row that belongs to the new column.
- /// Cell cell = row.Cells[table.ColumnCount - 1];
- ///
- /// // The first Paragraph that this cell houses.
- /// Paragraph p = cell.Paragraphs[0];
- ///
- /// // Insert this rows index.
- /// p.InsertText(i.ToString(), false);
- /// }
- ///
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public void InsertColumn(int index, bool direction)
- {
- var columnCount = ColumnCount;
- if (RowCount > 0)
- {
- if (index > 0 && index <= columnCount)
- {
- _cachedColCount = -1;
- foreach (Row r in Rows)
- {
- // create cell
- XElement cell = HelperFunctions.CreateTableCell();
-
- // insert cell
- // checks if it is in bounds of index
- // TODO: Check for gridspan of cells in row to check if merged cells
- if (r.Cells.Count < columnCount)
- {
- if (index >= columnCount)
- {
- AddCellToRow(r, cell, r.Cells.Count, direction);
- }
- else
- {
- bool directionTest = true;
- var positionIndex = 1;
- var actualPosition = 1;
- var gridAfterVal = 0;
- // checks to see if here is a deleted cell
- XElement trPr = r.Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- if (trPr != null)
- {
- XElement gridAfter = trPr.Element(XName.Get("gridAfter", DocX.w.NamespaceName));
- if (gridAfter != null)
- {
- XAttribute val = gridAfter.Attribute(XName.Get("val", DocX.w.NamespaceName));
- if (val != null)
- {
- gridAfterVal = int.Parse(val.Value);
- }
- }
- }
- // goes through iteration of cells to find the one the that contains the index number
- foreach (Cell rowCell in r.Cells)
- {
- var gridSpanVal = 0;
- XElement tcPr = rowCell.Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr != null)
- {
- XElement gridSpan = tcPr.Element(XName.Get("gridSpan", DocX.w.NamespaceName));
- if (gridSpan != null)
- {
- XAttribute val = gridSpan.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- int value = 0;
- if (val != null)
- if (int.TryParse(val.Value, out value))
- gridSpanVal = value -1;
- }
- }
-
-
- // Sees if the cell has gridSpan and if the index is within its lowest and highest cell value
- if ((index - gridAfterVal) >= actualPosition
- && (index - gridAfterVal) <= (actualPosition + gridSpanVal))
- {
- if (index == (actualPosition + gridSpanVal) && direction == true)
- {
- directionTest = true;
- }
- else
- {
- directionTest = false;
- }
- AddCellToRow(r, cell, positionIndex, directionTest);
- break;
- }
- positionIndex += 1;
- actualPosition += gridSpanVal + 1;
- }
- }
- }
- else if (r.Cells.Count == index)
- {
- AddCellToRow(r, cell, index, direction);
- }
- else
- AddCellToRow(r, cell, index, direction);
- }
- }
- else
- {
- throw new IndexOutOfRangeException("Out of index bounds, column count is " + columnCount + " you input " + index);
- }
- }
- }
-
- /// <summary>
- /// Adds a cell to the right or left of a cell
- /// </summary>
- /// <param name="row">is the row you are adding</param>
- /// <param name="cell">is the cell you are adding</param>
- /// <param name="index">the cell index position you are refferencing from</param>
- /// <param name="direction">which side of the cell you wish to add cell</param>
-
- private void AddCellToRow(Row row, XElement cell, int index, bool direction)
- {
- index -= 1;
- if (direction)
- {
- row.Cells[index].Xml.AddAfterSelf(cell);
- }
- else
- {
- row.Cells[index].Xml.AddBeforeSelf(cell);
- }
- }
-
- public void DeleteAndShiftCellsLeft(int rowIndex, int celIndex)
- {
-
- XAttribute gridAfterVal = new XAttribute(XName.Get("val", DocX.w.NamespaceName), 0);
- var trPr = Rows[rowIndex].Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- if (trPr != null)
- {
- var gridAfter = trPr.Element(XName.Get("gridAfter", DocX.w.NamespaceName));
- if (gridAfter != null)
- {
- var val = gridAfter.Attribute(XName.Get("val", DocX.w.NamespaceName));
- if (val != null)
- {
- val.Value = int.Parse(val.Value + 1).ToString();
- }
- else
- {
- val.Value = "1";
- }
- }
- else
- {
- var gridAfterElement = new XElement("gridAfter");
- var gridAfterValAttribute = new XAttribute("val", 1);
- gridAfter.SetAttributeValue("val", 1);
- }
- }
- else
- {
- XElement trPrXElement = new XElement(XName.Get("trPr",DocX.w.NamespaceName));
- XElement gridAfterElement = new XElement(XName.Get("gridAfter", DocX.w.NamespaceName));
- XAttribute gridAfterValAttribute = new XAttribute(XName.Get("val", DocX.w.NamespaceName), 1);
- gridAfterElement.Add(gridAfterValAttribute);
- trPrXElement.Add(gridAfterElement);
- Rows[rowIndex].Xml.AddFirst(trPrXElement);
- }
- var columnCount = this.ColumnCount;
- if (celIndex <= this.ColumnCount && this.Rows[rowIndex].ColumnCount <= this.ColumnCount)
- {
- Rows[rowIndex].Cells[celIndex].Xml.Remove();
- }
- }
-
- /// <summary>
- /// Insert a page break before a Table.
- /// </summary>
- /// <example>
- /// Insert a Table and a Paragraph into a document with a page break between them.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a new Paragraph.
- /// Paragraph p1 = document.InsertParagraph("Paragraph", false);
- ///
- /// // Insert a new Table.
- /// Table t1 = document.InsertTable(2, 2);
- /// t1.Design = TableDesign.LightShadingAccent1;
- ///
- /// // Insert a page break before this Table.
- /// t1.InsertPageBreakBeforeSelf();
- ///
- /// // Save this document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override void InsertPageBreakBeforeSelf()
- {
- base.InsertPageBreakBeforeSelf();
- }
-
-
- /// <summary>
- /// Insert a page break after a Table.
- /// </summary>
- /// <example>
- /// Insert a Table and a Paragraph into a document with a page break between them.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a new Table.
- /// Table t1 = document.InsertTable(2, 2);
- /// t1.Design = TableDesign.LightShadingAccent1;
- ///
- /// // Insert a page break after this Table.
- /// t1.InsertPageBreakAfterSelf();
- ///
- /// // Insert a new Paragraph.
- /// Paragraph p1 = document.InsertParagraph("Paragraph", false);
- ///
- /// // Save this document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override void InsertPageBreakAfterSelf()
- {
- base.InsertPageBreakAfterSelf();
- }
-
- /// <summary>
- /// Insert a new Table before this Table, this Table can be from this document or another document.
- /// </summary>
- /// <param name="t">The Table t to be inserted</param>
- /// <returns>A new Table inserted before this Table.</returns>
- /// <example>
- /// Insert a new Table before this Table.
- /// <code>
- /// // Place holder for a Table.
- /// Table t;
- ///
- /// // Load document a.
- /// using (DocX documentA = DocX.Load(@"a.docx"))
- /// {
- /// // Get the first Table from this document.
- /// t = documentA.Tables[0];
- /// }
- ///
- /// // Load document b.
- /// using (DocX documentB = DocX.Load(@"b.docx"))
- /// {
- /// // Get the first Table in document b.
- /// Table t2 = documentB.Tables[0];
- ///
- /// // Insert the Table from document a before this Table.
- /// Table newTable = t2.InsertTableBeforeSelf(t);
- ///
- /// // Save all changes made to document b.
- /// documentB.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override Table InsertTableBeforeSelf(Table t)
- {
- return base.InsertTableBeforeSelf(t);
- }
-
- /// <summary>
- /// Insert a new Table into this document before this Table.
- /// </summary>
- /// <param name="rowCount">The number of rows this Table should have.</param>
- /// <param name="columnCount">The number of columns this Table should have.</param>
- /// <returns>A new Table inserted before this Table.</returns>
- /// <example>
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// //Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- /// t.Design = TableDesign.LightShadingAccent1;
- /// t.Alignment = Alignment.center;
- ///
- /// // Insert a new Table before this Table.
- /// Table newTable = t.InsertTableBeforeSelf(2, 2);
- /// newTable.Design = TableDesign.LightShadingAccent2;
- /// newTable.Alignment = Alignment.center;
- ///
- /// // Save all changes made to this document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override Table InsertTableBeforeSelf(int rowCount, int columnCount)
- {
- return base.InsertTableBeforeSelf(rowCount, columnCount);
- }
-
- /// <summary>
- /// Insert a new Table after this Table, this Table can be from this document or another document.
- /// </summary>
- /// <param name="t">The Table t to be inserted</param>
- /// <returns>A new Table inserted after this Table.</returns>
- /// <example>
- /// Insert a new Table after this Table.
- /// <code>
- /// // Place holder for a Table.
- /// Table t;
- ///
- /// // Load document a.
- /// using (DocX documentA = DocX.Load(@"a.docx"))
- /// {
- /// // Get the first Table from this document.
- /// t = documentA.Tables[0];
- /// }
- ///
- /// // Load document b.
- /// using (DocX documentB = DocX.Load(@"b.docx"))
- /// {
- /// // Get the first Table in document b.
- /// Table t2 = documentB.Tables[0];
- ///
- /// // Insert the Table from document a after this Table.
- /// Table newTable = t2.InsertTableAfterSelf(t);
- ///
- /// // Save all changes made to document b.
- /// documentB.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override Table InsertTableAfterSelf(Table t)
- {
- return base.InsertTableAfterSelf(t);
- }
-
- /// <summary>
- /// Insert a new Table into this document after this Table.
- /// </summary>
- /// <param name="rowCount">The number of rows this Table should have.</param>
- /// <param name="columnCount">The number of columns this Table should have.</param>
- /// <returns>A new Table inserted before this Table.</returns>
- /// <example>
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// //Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- /// t.Design = TableDesign.LightShadingAccent1;
- /// t.Alignment = Alignment.center;
- ///
- /// // Insert a new Table after this Table.
- /// Table newTable = t.InsertTableAfterSelf(2, 2);
- /// newTable.Design = TableDesign.LightShadingAccent2;
- /// newTable.Alignment = Alignment.center;
- ///
- /// // Save all changes made to this document.
- /// document.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override Table InsertTableAfterSelf(int rowCount, int columnCount)
- {
- return base.InsertTableAfterSelf(rowCount, columnCount);
- }
-
- /// <summary>
- /// Insert a Paragraph before this Table, this Paragraph may have come from the same or another document.
- /// </summary>
- /// <param name="p">The Paragraph to insert.</param>
- /// <returns>The Paragraph now associated with this document.</returns>
- /// <example>
- /// Take a Paragraph from document a, and insert it into document b before this Table.
- /// <code>
- /// // Place holder for a Paragraph.
- /// Paragraph p;
- ///
- /// // Load document a.
- /// using (DocX documentA = DocX.Load(@"a.docx"))
- /// {
- /// // Get the first paragraph from this document.
- /// p = documentA.Paragraphs[0];
- /// }
- ///
- /// // Load document b.
- /// using (DocX documentB = DocX.Load(@"b.docx"))
- /// {
- /// // Get the first Table in document b.
- /// Table t = documentB.Tables[0];
- ///
- /// // Insert the Paragraph from document a before this Table.
- /// Paragraph newParagraph = t.InsertParagraphBeforeSelf(p);
- ///
- /// // Save all changes made to document b.
- /// documentB.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphBeforeSelf(Paragraph p)
- {
- return base.InsertParagraphBeforeSelf(p);
- }
-
- /// <summary>
- /// Insert a new Paragraph before this Table.
- /// </summary>
- /// <param name="text">The initial text for this new Paragraph.</param>
- /// <returns>A new Paragraph inserted before this Table.</returns>
- /// <example>
- /// Insert a new Paragraph before the first Table in this document.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- ///
- /// t.InsertParagraphBeforeSelf("I was inserted before the next Table.");
- ///
- /// // Save all changes made to this new document.
- /// document.Save();
- /// }// Release this new document form memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphBeforeSelf(string text)
- {
- return base.InsertParagraphBeforeSelf(text);
- }
-
- /// <summary>
- /// Insert a new Paragraph before this Table.
- /// </summary>
- /// <param name="text">The initial text for this new Paragraph.</param>
- /// <param name="trackChanges">Should this insertion be tracked as a change?</param>
- /// <returns>A new Paragraph inserted before this Table.</returns>
- /// <example>
- /// Insert a new paragraph before the first Table in this document.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- ///
- /// t.InsertParagraphBeforeSelf("I was inserted before the next Table.", false);
- ///
- /// // Save all changes made to this new document.
- /// document.Save();
- /// }// Release this new document form memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphBeforeSelf(string text, bool trackChanges)
- {
- return base.InsertParagraphBeforeSelf(text, trackChanges);
- }
-
- /// <summary>
- /// Insert a new Paragraph before this Table.
- /// </summary>
- /// <param name="text">The initial text for this new Paragraph.</param>
- /// <param name="trackChanges">Should this insertion be tracked as a change?</param>
- /// <param name="formatting">The formatting to apply to this insertion.</param>
- /// <returns>A new Paragraph inserted before this Table.</returns>
- /// <example>
- /// Insert a new paragraph before the first Table in this document.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- ///
- /// Formatting boldFormatting = new Formatting();
- /// boldFormatting.Bold = true;
- ///
- /// t.InsertParagraphBeforeSelf("I was inserted before the next Table.", false, boldFormatting);
- ///
- /// // Save all changes made to this new document.
- /// document.Save();
- /// }// Release this new document form memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphBeforeSelf(string text, bool trackChanges, Formatting formatting)
- {
- return base.InsertParagraphBeforeSelf(text, trackChanges, formatting);
- }
-
- /// <summary>
- /// Insert a Paragraph after this Table, this Paragraph may have come from the same or another document.
- /// </summary>
- /// <param name="p">The Paragraph to insert.</param>
- /// <returns>The Paragraph now associated with this document.</returns>
- /// <example>
- /// Take a Paragraph from document a, and insert it into document b after this Table.
- /// <code>
- /// // Place holder for a Paragraph.
- /// Paragraph p;
- ///
- /// // Load document a.
- /// using (DocX documentA = DocX.Load(@"a.docx"))
- /// {
- /// // Get the first paragraph from this document.
- /// p = documentA.Paragraphs[0];
- /// }
- ///
- /// // Load document b.
- /// using (DocX documentB = DocX.Load(@"b.docx"))
- /// {
- /// // Get the first Table in document b.
- /// Table t = documentB.Tables[0];
- ///
- /// // Insert the Paragraph from document a after this Table.
- /// Paragraph newParagraph = t.InsertParagraphAfterSelf(p);
- ///
- /// // Save all changes made to document b.
- /// documentB.Save();
- /// }// Release this document from memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphAfterSelf(Paragraph p)
- {
- return base.InsertParagraphAfterSelf(p);
- }
-
- /// <summary>
- /// Insert a new Paragraph after this Table.
- /// </summary>
- /// <param name="text">The initial text for this new Paragraph.</param>
- /// <param name="trackChanges">Should this insertion be tracked as a change?</param>
- /// <param name="formatting">The formatting to apply to this insertion.</param>
- /// <returns>A new Paragraph inserted after this Table.</returns>
- /// <example>
- /// Insert a new paragraph after the first Table in this document.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- ///
- /// Formatting boldFormatting = new Formatting();
- /// boldFormatting.Bold = true;
- ///
- /// t.InsertParagraphAfterSelf("I was inserted after the previous Table.", false, boldFormatting);
- ///
- /// // Save all changes made to this new document.
- /// document.Save();
- /// }// Release this new document form memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphAfterSelf(string text, bool trackChanges, Formatting formatting)
- {
- return base.InsertParagraphAfterSelf(text, trackChanges, formatting);
- }
-
- /// <summary>
- /// Insert a new Paragraph after this Table.
- /// </summary>
- /// <param name="text">The initial text for this new Paragraph.</param>
- /// <param name="trackChanges">Should this insertion be tracked as a change?</param>
- /// <returns>A new Paragraph inserted after this Table.</returns>
- /// <example>
- /// Insert a new paragraph after the first Table in this document.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- ///
- /// t.InsertParagraphAfterSelf("I was inserted after the previous Table.", false);
- ///
- /// // Save all changes made to this new document.
- /// document.Save();
- /// }// Release this new document form memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphAfterSelf(string text, bool trackChanges)
- {
- return base.InsertParagraphAfterSelf(text, trackChanges);
- }
-
- /// <summary>
- /// Insert a new Paragraph after this Table.
- /// </summary>
- /// <param name="text">The initial text for this new Paragraph.</param>
- /// <returns>A new Paragraph inserted after this Table.</returns>
- /// <example>
- /// Insert a new Paragraph after the first Table in this document.
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create(@"Test.docx"))
- /// {
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(2, 2);
- ///
- /// t.InsertParagraphAfterSelf("I was inserted after the previous Table.");
- ///
- /// // Save all changes made to this new document.
- /// document.Save();
- /// }// Release this new document form memory.
- /// </code>
- /// </example>
- public override Paragraph InsertParagraphAfterSelf(string text)
- {
- return base.InsertParagraphAfterSelf(text);
- }
-
- /// <summary>
- /// Set a table border
- /// Added by lckuiper @ 20101117
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- ///using (DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert a table into this document.
- /// Table t = document.InsertTable(3, 3);
- ///
- /// // Create a large blue border.
- /// Border b = new Border(BorderStyle.Tcbs_single, BorderSize.seven, 0, Color.Blue);
- ///
- /// // Set the tables Top, Bottom, Left and Right Borders to b.
- /// t.SetBorder(TableBorderType.Top, b);
- /// t.SetBorder(TableBorderType.Bottom, b);
- /// t.SetBorder(TableBorderType.Left, b);
- /// t.SetBorder(TableBorderType.Right, b);
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- /// <param name="borderType">The table border to set</param>
- /// <param name="border">Border object to set the table border</param>
- public void SetBorder(TableBorderType borderType, Border border)
- {
- /*
- * Get the tblPr (table properties) element for this Table,
- * null will be return if no such element exists.
- */
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr == null)
- {
- Xml.SetElementValue(XName.Get("tblPr", DocX.w.NamespaceName), string.Empty);
- tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tblBorders (table borders) element for this Table,
- * null will be return if no such element exists.
- */
- XElement tblBorders = tblPr.Element(XName.Get("tblBorders", DocX.w.NamespaceName));
- if (tblBorders == null)
- {
- tblPr.SetElementValue(XName.Get("tblBorders", DocX.w.NamespaceName), string.Empty);
- tblBorders = tblPr.Element(XName.Get("tblBorders", DocX.w.NamespaceName));
- }
-
- /*
- * Get the 'borderType' (table border) element for this Table,
- * null will be return if no such element exists.
- */
- string tbordertype;
- tbordertype = borderType.ToString();
- // only lower the first char of string (because of insideH and insideV)
- tbordertype = tbordertype.Substring(0, 1).ToLower() + tbordertype.Substring(1);
-
- XElement tblBorderType = tblBorders.Element(XName.Get(borderType.ToString(), DocX.w.NamespaceName));
- if (tblBorderType == null)
- {
- tblBorders.SetElementValue(XName.Get(tbordertype, DocX.w.NamespaceName), string.Empty);
- tblBorderType = tblBorders.Element(XName.Get(tbordertype, DocX.w.NamespaceName));
- }
-
- // get string value of border style
- string borderstyle = border.Tcbs.ToString().Substring(5);
- borderstyle = borderstyle.Substring(0, 1).ToLower() + borderstyle.Substring(1);
-
- // The val attribute is used for the border style
- tblBorderType.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), borderstyle);
-
- if (border.Tcbs != BorderStyle.Tcbs_nil)
- {
- int size;
- switch (border.Size)
- {
- case BorderSize.one: size = 2; break;
- case BorderSize.two: size = 4; break;
- case BorderSize.three: size = 6; break;
- case BorderSize.four: size = 8; break;
- case BorderSize.five: size = 12; break;
- case BorderSize.six: size = 18; break;
- case BorderSize.seven: size = 24; break;
- case BorderSize.eight: size = 36; break;
- case BorderSize.nine: size = 48; break;
- default: size = 2; break;
- }
-
- // The sz attribute is used for the border size
- tblBorderType.SetAttributeValue(XName.Get("sz", DocX.w.NamespaceName), (size).ToString());
-
- // The space attribute is used for the cell spacing (probably '0')
- tblBorderType.SetAttributeValue(XName.Get("space", DocX.w.NamespaceName), (border.Space).ToString());
-
- // The color attribute is used for the border color
- tblBorderType.SetAttributeValue(XName.Get("color", DocX.w.NamespaceName), border.Color.ToHex());
- }
- }
-
- /// <summary>
- /// Get a table border
- /// Added by lckuiper @ 20101117
- /// </summary>
- /// <param name="borderType">The table border to get</param>
- public Border GetBorder(TableBorderType borderType)
- {
- // instance with default border values
- Border b = new Border();
-
- /*
- * Get the tblPr (table properties) element for this Table,
- * null will be return if no such element exists.
- */
- XElement tblPr = Xml.Element(XName.Get("tblPr", DocX.w.NamespaceName));
- if (tblPr == null)
- {
- // uses default border style
- }
-
- /*
- * Get the tblBorders (table borders) element for this Table,
- * null will be return if no such element exists.
- */
- XElement tblBorders = tblPr.Element(XName.Get("tblBorders", DocX.w.NamespaceName));
- if (tblBorders == null)
- {
- // uses default border style
- }
-
- /*
- * Get the 'borderType' (table border) element for this Table,
- * null will be return if no such element exists.
- */
- string tbordertype;
- tbordertype = borderType.ToString();
- // only lower the first char of string (because of insideH and insideV)
- tbordertype = tbordertype.Substring(0, 1).ToLower() + tbordertype.Substring(1);
-
- XElement tblBorderType = tblBorders.Element(XName.Get(tbordertype, DocX.w.NamespaceName));
- if (tblBorderType == null)
- {
- // uses default border style
- }
-
- // The val attribute is used for the border style
- XAttribute val = tblBorderType.Attribute(XName.Get("val", DocX.w.NamespaceName));
- // If val is null, this table contains no border information.
- if (val == null)
- {
- // uses default border style
- }
- else
- {
- try
- {
- string bordertype = "Tcbs_" + val.Value;
- b.Tcbs = (BorderStyle)Enum.Parse(typeof(BorderStyle), bordertype);
- }
- catch
- {
- val.Remove();
- // uses default border style
- }
- }
-
- // The sz attribute is used for the border size
- XAttribute sz = tblBorderType.Attribute(XName.Get("sz", DocX.w.NamespaceName));
- // If sz is null, this border contains no size information.
- if (sz == null)
- {
- // uses default border style
- }
- else
- {
- // If sz is not an int, something is wrong with this attributes value, so remove it
- int numerical_size;
- if (!int.TryParse(sz.Value, out numerical_size))
- sz.Remove();
- else
- {
- switch (numerical_size)
- {
- case 2: b.Size = BorderSize.one; break;
- case 4: b.Size = BorderSize.two; break;
- case 6: b.Size = BorderSize.three; break;
- case 8: b.Size = BorderSize.four; break;
- case 12: b.Size = BorderSize.five; break;
- case 18: b.Size = BorderSize.six; break;
- case 24: b.Size = BorderSize.seven; break;
- case 36: b.Size = BorderSize.eight; break;
- case 48: b.Size = BorderSize.nine; break;
- default: b.Size = BorderSize.one; break;
- }
- }
- }
-
- // The space attribute is used for the border spacing (probably '0')
- XAttribute space = tblBorderType.Attribute(XName.Get("space", DocX.w.NamespaceName));
- // If space is null, this border contains no space information.
- if (space == null)
- {
- // uses default border style
- }
- else
- {
- // If space is not an int, something is wrong with this attributes value, so remove it
- int borderspace;
- if (!int.TryParse(space.Value, out borderspace))
- {
- space.Remove();
- // uses default border style
- }
- else
- {
- b.Space = borderspace;
- }
- }
-
- // The color attribute is used for the border color
- XAttribute color = tblBorderType.Attribute(XName.Get("color", DocX.w.NamespaceName));
- if (color == null)
- {
- // uses default border style
- }
- else
- {
- // If color is not a Color, something is wrong with this attributes value, so remove it
- try
- {
- b.Color = ColorTranslator.FromHtml(string.Format("#{0}", color.Value));
- }
- catch
- {
- color.Remove();
- // uses default border style
- }
- }
- return b;
- }
-
- }
-
- /// <summary>
- /// Represents a single row in a Table.
- /// </summary>
- public class Row : Container
- {
- /// <summary>
- /// Calculates columns count in the row, taking spanned cells into account
- /// </summary>
- public Int32 ColumnCount
- {
- get
- {
- int gridSpanSum = 0;
- var trPr = Xml.Element(XName.Get("trPr",DocX.w.NamespaceName));
- if(trPr !=null)
- {
- var gridAfter = trPr.Element(XName.Get("gridAfter", DocX.w.NamespaceName));
- if(gridAfter != null)
- {
- var val = gridAfter.Attribute(XName.Get("val", DocX.w.NamespaceName));
- if(val != null)
- {
- gridSpanSum += int.Parse(val.Value);
- }
- }
- }
- // Foreach each Cell between startIndex and endIndex inclusive.
- foreach (Cell c in Cells)
- {
- XElement tcPr = c.Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr != null)
- {
- XElement gridSpan = tcPr.Element(XName.Get("gridSpan", DocX.w.NamespaceName));
- if (gridSpan != null)
- {
- XAttribute val = gridSpan.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- int value = 0;
- if (val != null)
- if (int.TryParse(val.Value, out value))
- gridSpanSum += value - 1;
- }
- }
- }
-
- // return cells count + count of spanned cells
- return Cells.Count + gridSpanSum;
- }
- }
-
- /// <summary>
- /// A list of Cells in this Row.
- /// </summary>
- public List<Cell> Cells
- {
- get
- {
- List<Cell> cells =
- (
- from c in Xml.Elements(XName.Get("tc", DocX.w.NamespaceName))
- select new Cell(this, Document, c)
- ).ToList();
-
- return cells;
- }
- }
-
- public void Remove()
- {
- XElement table = Xml.Parent;
-
- Xml.Remove();
- if (table.Elements(XName.Get("tr", DocX.w.NamespaceName)).Count() == 0)
- table.Remove();
- }
-
- public override ReadOnlyCollection<Paragraph> Paragraphs
- {
- get
- {
- List<Paragraph> paragraphs =
- (
- from p in Xml.Descendants(DocX.w + "p")
- select new Paragraph(Document, p, 0)
- ).ToList();
-
- foreach (Paragraph p in paragraphs)
- p.PackagePart = table.mainPart;
-
- return paragraphs.AsReadOnly();
- }
- }
-
- internal Table table;
- internal Row(Table table, DocX document, XElement xml)
- : base(document, xml)
- {
- this.table = table;
- this.mainPart = table.mainPart;
- }
-
- /// <summary>
- /// The property name to set when specifiying an exact height
- /// </summary>
- /// <created>Nick Kusters</created>
- const string _hRule_Exact = "exact";
- /// <summary>
- /// The property name to set when specifying a minimum height
- /// </summary>
- /// <created>Nick Kusters</created>
- const string _hRule_AtLeast = "atLeast";
- /// <summary>
- /// Height in pixels. // Added by Joel, refactored by Cathal.
- /// </summary>
- public double Height
- {
- get
- {
- /*
- * Get the trPr (table row properties) element for this Row,
- * null will be return if no such element exists.
- */
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
-
- // If trPr is null, this row contains no height information.
- if (trPr == null)
- return double.NaN;
-
- /*
- * Get the trHeight element for this Row,
- * null will be return if no such element exists.
- */
- XElement trHeight = trPr.Element(XName.Get("trHeight", DocX.w.NamespaceName));
-
- // If trHeight is null, this row contains no height information.
- if (trHeight == null)
- return double.NaN;
-
- // Get the val attribute for this trHeight element.
- XAttribute val = trHeight.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- // If w is null, this cell contains no width information.
- if (val == null)
- return double.NaN;
-
- // If val is not a double, something is wrong with this attributes value, so remove it and return double.NaN;
- double heightInWordUnits;
- if (!double.TryParse(val.Value, out heightInWordUnits))
- {
- val.Remove();
- return double.NaN;
- }
-
- // 15 "word units" in one pixel
- return (heightInWordUnits / 15);
- }
- set
- {
- SetHeight(value, true);
- }
- }
- /// <summary>
- /// Helper method to set either the exact height or the min-height
- /// </summary>
- /// <param name="height">The height value to set (in pixels)</param>
- /// <param name="exact">
- /// If true, the height will be forced.
- /// If false, it will be treated as a minimum height, auto growing past it if need be.
- /// </param>
- /// <created>Nick Kusters</created>
- void SetHeight(double height, bool exact)
- {
- /*
- * Get the trPr (table row properties) element for this Row,
- * null will be return if no such element exists.
- */
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- if (trPr == null)
- {
- Xml.SetElementValue(XName.Get("trPr", DocX.w.NamespaceName), string.Empty);
- trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the trHeight element for this Row,
- * null will be return if no such element exists.
- */
- XElement trHeight = trPr.Element(XName.Get("trHeight", DocX.w.NamespaceName));
- if (trHeight == null)
- {
- trPr.SetElementValue(XName.Get("trHeight", DocX.w.NamespaceName), string.Empty);
- trHeight = trPr.Element(XName.Get("trHeight", DocX.w.NamespaceName));
- }
-
- // The hRule attribute needs to be set to exact.
- trHeight.SetAttributeValue(XName.Get("hRule", DocX.w.NamespaceName), exact ? _hRule_Exact : _hRule_AtLeast);
-
- // 15 "word units" is equal to one pixel.
- trHeight.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), (height * 15).ToString());
- }
- /// <summary>
- /// Min-Height in pixels. // Added by Nick Kusters.
- /// </summary>
- /// <remarks>
- /// Value will be treated as a minimum height, auto growing past it if need be.
- /// </remarks>
- /// <created>Nick Kusters</created>
- public double MinHeight
- {
- get
- {
- // Just return the value from the normal height property since it doesn't care if you've set an exact or minimum height.
- return Height;
- }
- set
- {
- SetHeight(value, false);
- }
- }
-
-
- /// <summary>
- /// Set to true to make this row the table header row that will be repeated on each page
- /// </summary>
- public bool TableHeader
- {
- get
- {
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- XElement tblHeader = trPr.Element(XName.Get("tblHeader", DocX.w.NamespaceName));
- if (tblHeader == null)
- {
- return false;
- }
- else
- {
- return true;
- }
- }
- set
- {
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- if (trPr == null)
- {
- Xml.SetElementValue(XName.Get("trPr", DocX.w.NamespaceName), string.Empty);
- trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- }
- XElement tblHeader = trPr.Element(XName.Get("tblHeader", DocX.w.NamespaceName));
- if (tblHeader == null && value)
- {
- trPr.SetElementValue(XName.Get("tblHeader", DocX.w.NamespaceName), string.Empty);
- }
- if (tblHeader != null && !value)
- {
- tblHeader.Remove();
- }
- }
- }
-
-
- /// <summary>
- /// Allow row to break across pages.
- /// The default value is true: Word will break the contents of the row across pages.
- /// If set to false, the contents of the row will not be split across pages, the entire row will be moved to the next page instead.
- /// </summary>
- public bool BreakAcrossPages
- {
- get
- {
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
-
- if (trPr == null)
- return true;
-
- XElement trCantSplit = trPr.Element(XName.Get("cantSplit", DocX.w.NamespaceName));
-
- if (trCantSplit == null)
- return true;
-
- return false;
- }
-
- set
- {
- if (value == false)
- {
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- if (trPr == null)
- {
- Xml.SetElementValue(XName.Get("trPr", DocX.w.NamespaceName), string.Empty);
- trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- }
-
- XElement trCantSplit = trPr.Element(XName.Get("cantSplit", DocX.w.NamespaceName));
- if (trCantSplit == null)
- trPr.SetElementValue(XName.Get("cantSplit", DocX.w.NamespaceName), string.Empty);
- }
-
- if (value == true)
- {
- XElement trPr = Xml.Element(XName.Get("trPr", DocX.w.NamespaceName));
- if (trPr != null)
- {
- XElement trCantSplit = trPr.Element(XName.Get("cantSplit", DocX.w.NamespaceName));
- if (trCantSplit != null)
- trCantSplit.Remove();
- }
- }
- }
- }
-
- /// <summary>
- /// Merge cells starting with startIndex and ending with endIndex.
- /// </summary>
- public void MergeCells(int startIndex, int endIndex)
- {
- // Check for valid start and end indexes.
- if (startIndex < 0 || endIndex <= startIndex || endIndex > Cells.Count + 1)
- throw new IndexOutOfRangeException();
-
- // The sum of all merged gridSpans.
- int gridSpanSum = 0;
-
- // Foreach each Cell between startIndex and endIndex inclusive.
- foreach (Cell c in Cells.Where((z, i) => i > startIndex && i <= endIndex))
- {
- XElement tcPr = c.Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr != null)
- {
- XElement gridSpan = tcPr.Element(XName.Get("gridSpan", DocX.w.NamespaceName));
- if (gridSpan != null)
- {
- XAttribute val = gridSpan.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- int value = 0;
- if (val != null)
- if (int.TryParse(val.Value, out value))
- gridSpanSum += value - 1;
- }
- }
-
- // Add this cells Pragraph to the merge start Cell.
- Cells[startIndex].Xml.Add(c.Xml.Elements(XName.Get("p", DocX.w.NamespaceName)));
-
- // Remove this Cell.
- c.Xml.Remove();
- }
-
- /*
- * Get the tcPr (table cell properties) element for the first cell in this merge,
- * null will be returned if no such element exists.
- */
- XElement start_tcPr = Cells[startIndex].Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (start_tcPr == null)
- {
- Cells[startIndex].Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- start_tcPr = Cells[startIndex].Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the gridSpan element of this row,
- * null will be returned if no such element exists.
- */
- XElement start_gridSpan = start_tcPr.Element(XName.Get("gridSpan", DocX.w.NamespaceName));
- if (start_gridSpan == null)
- {
- start_tcPr.SetElementValue(XName.Get("gridSpan", DocX.w.NamespaceName), string.Empty);
- start_gridSpan = start_tcPr.Element(XName.Get("gridSpan", DocX.w.NamespaceName));
- }
-
- /*
- * Get the val attribute of this row,
- * null will be returned if no such element exists.
- */
- XAttribute start_val = start_gridSpan.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- int start_value = 0;
- if (start_val != null)
- if (int.TryParse(start_val.Value, out start_value))
- gridSpanSum += start_value - 1;
-
- // Set the val attribute to the number of merged cells.
- start_gridSpan.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), (gridSpanSum + (endIndex - startIndex + 1)).ToString());
- }
- }
-
- public class Cell : Container
- {
- internal Row row;
-
- internal Cell(Row row, DocX document, XElement xml)
- : base(document, xml)
- {
- this.row = row;
- this.mainPart = row.mainPart;
- }
-
- public override ReadOnlyCollection<Paragraph> Paragraphs
- {
- get
- {
- ReadOnlyCollection<Paragraph> paragraphs = base.Paragraphs;
-
- foreach (Paragraph p in paragraphs)
- p.PackagePart = row.table.mainPart;
-
- return paragraphs;
- }
- }
-
- public int GridSpan
- {
- get
- {
- var somethin = int.Parse(this.Xml.Element(XName.Get("gridSpan", DocX.w.NamespaceName)).Attribute(XName.Get("Value", DocX.w.NamespaceName)).Value);
- return somethin;
- }
- }
-
- /// <summary>
- /// Gets or Sets this Cells vertical alignment.
- /// </summary>
- /// <!--Patch 7398 added by lckuiper on Nov 16th 2010 @ 2:23 PM-->
- /// <example>
- /// Creates a table with 3 cells and sets the vertical alignment of each to 1 of the 3 available options.
- /// <code>
- /// // Create a new document.
- ///using(DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert a Table into this document.
- /// Table t = document.InsertTable(3, 1);
- ///
- /// // Set the design of the Table such that we can easily identify cell boundaries.
- /// t.Design = TableDesign.TableGrid;
- ///
- /// // Set the height of the row bigger than default.
- /// // We need to be able to see the difference in vertical cell alignment options.
- /// t.Rows[0].Height = 100;
- ///
- /// // Set the vertical alignment of cell0 to top.
- /// Cell c0 = t.Rows[0].Cells[0];
- /// c0.InsertParagraph("VerticalAlignment.Top");
- /// c0.VerticalAlignment = VerticalAlignment.Top;
- ///
- /// // Set the vertical alignment of cell1 to center.
- /// Cell c1 = t.Rows[0].Cells[1];
- /// c1.InsertParagraph("VerticalAlignment.Center");
- /// c1.VerticalAlignment = VerticalAlignment.Center;
- ///
- /// // Set the vertical alignment of cell2 to bottom.
- /// Cell c2 = t.Rows[0].Cells[2];
- /// c2.InsertParagraph("VerticalAlignment.Bottom");
- /// c2.VerticalAlignment = VerticalAlignment.Bottom;
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- public VerticalAlignment VerticalAlignment
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return VerticalAlignment.Center;
-
- /*
- * Get the vAlign (table cell vertical alignment) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement vAlign = tcPr.Element(XName.Get("vAlign", DocX.w.NamespaceName));
-
- // If vAlign is null, this cell contains no vertical alignment information.
- if (vAlign == null)
- return VerticalAlignment.Center;
-
- // Get the val attribute of the vAlign element.
- XAttribute val = vAlign.Attribute(XName.Get("val", DocX.w.NamespaceName));
-
- // If val is null, this cell contains no vAlign information.
- if (val == null)
- return VerticalAlignment.Center;
-
- // If val is not a VerticalAlign enum, something is wrong with this attributes value, so remove it and return VerticalAlignment.Center;
- try
- {
- return (VerticalAlignment)Enum.Parse(typeof(VerticalAlignment), val.Value, true);
- }
-
- catch
- {
- val.Remove();
- return VerticalAlignment.Center;
- }
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the vAlign (table cell vertical alignment) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement vAlign = tcPr.Element(XName.Get("vAlign", DocX.w.NamespaceName));
- if (vAlign == null)
- {
- tcPr.SetElementValue(XName.Get("vAlign", DocX.w.NamespaceName), string.Empty);
- vAlign = tcPr.Element(XName.Get("vAlign", DocX.w.NamespaceName));
- }
-
- // Set the VerticalAlignment in 'val'
- vAlign.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), value.ToString().ToLower());
- }
- }
-
- public Color Shading
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no Color information.
- if (tcPr == null)
- return Color.White;
-
- /*
- * Get the shd (table shade) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement shd = tcPr.Element(XName.Get("shd", DocX.w.NamespaceName));
-
- // If shd is null, this cell contains no Color information.
- if (shd == null)
- return Color.White;
-
- // Get the w attribute of the tcW element.
- XAttribute fill = shd.Attribute(XName.Get("fill", DocX.w.NamespaceName));
-
- // If fill is null, this cell contains no Color information.
- if (fill == null)
- return Color.White;
-
- return ColorTranslator.FromHtml(string.Format("#{0}", fill.Value));
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the shd (table shade) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement shd = tcPr.Element(XName.Get("shd", DocX.w.NamespaceName));
- if (shd == null)
- {
- tcPr.SetElementValue(XName.Get("shd", DocX.w.NamespaceName), string.Empty);
- shd = tcPr.Element(XName.Get("shd", DocX.w.NamespaceName));
- }
-
- // The val attribute needs to be set to clear
- shd.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), "clear");
-
- // The color attribute needs to be set to auto
- shd.SetAttributeValue(XName.Get("color", DocX.w.NamespaceName), "auto");
-
- // The fill attribute needs to be set to the hex for this Color.
- shd.SetAttributeValue(XName.Get("fill", DocX.w.NamespaceName), value.ToHex());
- }
- }
-
- /// <summary>
- /// Width in pixels. // Added by Joel, refactored by Cathal
- /// </summary>
- public double Width
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return double.NaN;
-
- /*
- * Get the tcW (table cell width) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcW = tcPr.Element(XName.Get("tcW", DocX.w.NamespaceName));
-
- // If tcW is null, this cell contains no width information.
- if (tcW == null)
- return double.NaN;
-
- // Get the w attribute of the tcW element.
- XAttribute w = tcW.Attribute(XName.Get("w", DocX.w.NamespaceName));
-
- // If w is null, this cell contains no width information.
- if (w == null)
- return double.NaN;
-
- // If w is not a double, something is wrong with this attributes value, so remove it and return double.NaN;
- double widthInWordUnits;
- if (!double.TryParse(w.Value, out widthInWordUnits))
- {
- w.Remove();
- return double.NaN;
- }
-
- // 15 "word units" is equal to one pixel.
- return (widthInWordUnits / 15);
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tcW (table cell width) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcW = tcPr.Element(XName.Get("tcW", DocX.w.NamespaceName));
- if (tcW == null)
- {
- tcPr.SetElementValue(XName.Get("tcW", DocX.w.NamespaceName), string.Empty);
- tcW = tcPr.Element(XName.Get("tcW", DocX.w.NamespaceName));
- }
-
- if (value == -1)
- {
- // remove cell width; due to set on table prop.
- tcW.Remove();
- return;
-
- //tcW.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "auto");
- //return;
- }
-
- // The type attribute needs to be set to dxa which represents "twips" or twentieths of a point. In other words, 1/1440th of an inch.
- tcW.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "dxa");
-
- // 15 "word units" is equal to one pixel.
- tcW.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), (value * 15).ToString());
- }
- }
-
- /// <summary>
- /// LeftMargin in pixels. // Added by lckuiper
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- ///using (DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert table into this document.
- /// Table t = document.InsertTable(3, 3);
- /// t.Design = TableDesign.TableGrid;
- ///
- /// // Get the center cell.
- /// Cell center = t.Rows[1].Cells[1];
- ///
- /// // Insert some text so that we can see the effect of the Margins.
- /// center.Paragraphs[0].Append("Center Cell");
- ///
- /// // Set the center cells Left, Margin to 10.
- /// center.MarginLeft = 25;
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- public double MarginLeft
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return double.NaN;
-
- /*
- * Get the tcMar
- *
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
-
- // If tcMar is null, this cell contains no margin information.
- if (tcMar == null)
- return double.NaN;
-
- // Get the left (LeftMargin) element
- XElement tcMarLeft = tcMar.Element(XName.Get("left", DocX.w.NamespaceName));
-
- // If tcMarLeft is null, this cell contains no left margin information.
- if (tcMarLeft == null)
- return double.NaN;
-
- // Get the w attribute of the tcMarLeft element.
- XAttribute w = tcMarLeft.Attribute(XName.Get("w", DocX.w.NamespaceName));
-
- // If w is null, this cell contains no width information.
- if (w == null)
- return double.NaN;
-
- // If w is not a double, something is wrong with this attributes value, so remove it and return double.NaN;
- double leftMarginInWordUnits;
- if (!double.TryParse(w.Value, out leftMarginInWordUnits))
- {
- w.Remove();
- return double.NaN;
- }
-
- // 15 "word units" is equal to one pixel.
- return (leftMarginInWordUnits / 15);
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tcMar (table cell margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- if (tcMar == null)
- {
- tcPr.SetElementValue(XName.Get("tcMar", DocX.w.NamespaceName), string.Empty);
- tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- }
-
- /*
- * Get the left (table cell left margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMarLeft = tcMar.Element(XName.Get("left", DocX.w.NamespaceName));
- if (tcMarLeft == null)
- {
- tcMar.SetElementValue(XName.Get("left", DocX.w.NamespaceName), string.Empty);
- tcMarLeft = tcMar.Element(XName.Get("left", DocX.w.NamespaceName));
- }
-
- // The type attribute needs to be set to dxa which represents "twips" or twentieths of a point. In other words, 1/1440th of an inch.
- tcMarLeft.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "dxa");
-
- // 15 "word units" is equal to one pixel.
- tcMarLeft.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), (value * 15).ToString());
- }
- }
-
- /// <summary>
- /// RightMargin in pixels. // Added by lckuiper
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- ///using (DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert table into this document.
- /// Table t = document.InsertTable(3, 3);
- /// t.Design = TableDesign.TableGrid;
- ///
- /// // Get the center cell.
- /// Cell center = t.Rows[1].Cells[1];
- ///
- /// // Insert some text so that we can see the effect of the Margins.
- /// center.Paragraphs[0].Append("Center Cell");
- ///
- /// // Set the center cells Right, Margin to 10.
- /// center.MarginRight = 25;
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- public double MarginRight
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return double.NaN;
-
- /*
- * Get the tcMar
- *
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
-
- // If tcMar is null, this cell contains no margin information.
- if (tcMar == null)
- return double.NaN;
-
- // Get the right (RightMargin) element
- XElement tcMarRight = tcMar.Element(XName.Get("right", DocX.w.NamespaceName));
-
- // If tcMarRight is null, this cell contains no right margin information.
- if (tcMarRight == null)
- return double.NaN;
-
- // Get the w attribute of the tcMarRight element.
- XAttribute w = tcMarRight.Attribute(XName.Get("w", DocX.w.NamespaceName));
-
- // If w is null, this cell contains no width information.
- if (w == null)
- return double.NaN;
-
- // If w is not a double, something is wrong with this attributes value, so remove it and return double.NaN;
- double rightMarginInWordUnits;
- if (!double.TryParse(w.Value, out rightMarginInWordUnits))
- {
- w.Remove();
- return double.NaN;
- }
-
- // 15 "word units" is equal to one pixel.
- return (rightMarginInWordUnits / 15);
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tcMar (table cell margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- if (tcMar == null)
- {
- tcPr.SetElementValue(XName.Get("tcMar", DocX.w.NamespaceName), string.Empty);
- tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- }
-
- /*
- * Get the right (table cell right margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMarRight = tcMar.Element(XName.Get("right", DocX.w.NamespaceName));
- if (tcMarRight == null)
- {
- tcMar.SetElementValue(XName.Get("right", DocX.w.NamespaceName), string.Empty);
- tcMarRight = tcMar.Element(XName.Get("right", DocX.w.NamespaceName));
- }
-
- // The type attribute needs to be set to dxa which represents "twips" or twentieths of a point. In other words, 1/1440th of an inch.
- tcMarRight.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "dxa");
-
- // 15 "word units" is equal to one pixel.
- tcMarRight.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), (value * 15).ToString());
- }
- }
-
- /// <summary>
- /// TopMargin in pixels. // Added by lckuiper
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- ///using (DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert table into this document.
- /// Table t = document.InsertTable(3, 3);
- /// t.Design = TableDesign.TableGrid;
- ///
- /// // Get the center cell.
- /// Cell center = t.Rows[1].Cells[1];
- ///
- /// // Insert some text so that we can see the effect of the Margins.
- /// center.Paragraphs[0].Append("Center Cell");
- ///
- /// // Set the center cells Top, Margin to 10.
- /// center.MarginTop = 25;
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- public double MarginTop
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return double.NaN;
-
- /*
- * Get the tcMar
- *
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
-
- // If tcMar is null, this cell contains no margin information.
- if (tcMar == null)
- return double.NaN;
-
- // Get the top (TopMargin) element
- XElement tcMarTop = tcMar.Element(XName.Get("top", DocX.w.NamespaceName));
-
- // If tcMarTop is null, this cell contains no top margin information.
- if (tcMarTop == null)
- return double.NaN;
-
- // Get the w attribute of the tcMarTop element.
- XAttribute w = tcMarTop.Attribute(XName.Get("w", DocX.w.NamespaceName));
-
- // If w is null, this cell contains no width information.
- if (w == null)
- return double.NaN;
-
- // If w is not a double, something is wrong with this attributes value, so remove it and return double.NaN;
- double topMarginInWordUnits;
- if (!double.TryParse(w.Value, out topMarginInWordUnits))
- {
- w.Remove();
- return double.NaN;
- }
-
- // 15 "word units" is equal to one pixel.
- return (topMarginInWordUnits / 15);
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tcMar (table cell margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- if (tcMar == null)
- {
- tcPr.SetElementValue(XName.Get("tcMar", DocX.w.NamespaceName), string.Empty);
- tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- }
-
- /*
- * Get the top (table cell top margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMarTop = tcMar.Element(XName.Get("top", DocX.w.NamespaceName));
- if (tcMarTop == null)
- {
- tcMar.SetElementValue(XName.Get("top", DocX.w.NamespaceName), string.Empty);
- tcMarTop = tcMar.Element(XName.Get("top", DocX.w.NamespaceName));
- }
-
- // The type attribute needs to be set to dxa which represents "twips" or twentieths of a point. In other words, 1/1440th of an inch.
- tcMarTop.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "dxa");
-
- // 15 "word units" is equal to one pixel.
- tcMarTop.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), (value * 15).ToString());
- }
- }
-
- /// <summary>
- /// BottomMargin in pixels. // Added by lckuiper
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- ///using (DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert table into this document.
- /// Table t = document.InsertTable(3, 3);
- /// t.Design = TableDesign.TableGrid;
- ///
- /// // Get the center cell.
- /// Cell center = t.Rows[1].Cells[1];
- ///
- /// // Insert some text so that we can see the effect of the Margins.
- /// center.Paragraphs[0].Append("Center Cell");
- ///
- /// // Set the center cells Top, Margin to 10.
- /// center.MarginBottom = 25;
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- public double MarginBottom
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return double.NaN;
-
- /*
- * Get the tcMar
- *
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
-
- // If tcMar is null, this cell contains no margin information.
- if (tcMar == null)
- return double.NaN;
-
- // Get the bottom (BottomMargin) element
- XElement tcMarBottom = tcMar.Element(XName.Get("bottom", DocX.w.NamespaceName));
-
- // If tcMarBottom is null, this cell contains no bottom margin information.
- if (tcMarBottom == null)
- return double.NaN;
-
- // Get the w attribute of the tcMarBottom element.
- XAttribute w = tcMarBottom.Attribute(XName.Get("w", DocX.w.NamespaceName));
-
- // If w is null, this cell contains no width information.
- if (w == null)
- return double.NaN;
-
- // If w is not a double, something is wrong with this attributes value, so remove it and return double.NaN;
- double bottomMarginInWordUnits;
- if (!double.TryParse(w.Value, out bottomMarginInWordUnits))
- {
- w.Remove();
- return double.NaN;
- }
-
- // 15 "word units" is equal to one pixel.
- return (bottomMarginInWordUnits / 15);
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tcMar (table cell margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- if (tcMar == null)
- {
- tcPr.SetElementValue(XName.Get("tcMar", DocX.w.NamespaceName), string.Empty);
- tcMar = tcPr.Element(XName.Get("tcMar", DocX.w.NamespaceName));
- }
-
- /*
- * Get the bottom (table cell bottom margin) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcMarBottom = tcMar.Element(XName.Get("bottom", DocX.w.NamespaceName));
- if (tcMarBottom == null)
- {
- tcMar.SetElementValue(XName.Get("bottom", DocX.w.NamespaceName), string.Empty);
- tcMarBottom = tcMar.Element(XName.Get("bottom", DocX.w.NamespaceName));
- }
-
- // The type attribute needs to be set to dxa which represents "twips" or twentieths of a point. In other words, 1/1440th of an inch.
- tcMarBottom.SetAttributeValue(XName.Get("type", DocX.w.NamespaceName), "dxa");
-
- // 15 "word units" is equal to one pixel.
- tcMarBottom.SetAttributeValue(XName.Get("w", DocX.w.NamespaceName), (value * 15).ToString());
- }
- }
-
- /// <summary>
- /// Set the table cell border
- /// Added by lckuiper @ 20101117
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- ///using (DocX document = DocX.Create("Test.docx"))
- ///{
- /// // Insert a table into this document.
- /// Table t = document.InsertTable(3, 3);
- ///
- /// // Get the center cell.
- /// Cell center = t.Rows[1].Cells[1];
- ///
- /// // Create a large blue border.
- /// Border b = new Border(BorderStyle.Tcbs_single, BorderSize.seven, 0, Color.Blue);
- ///
- /// // Set the center cells Top, Bottom, Left and Right Borders to b.
- /// center.SetBorder(TableCellBorderType.Top, b);
- /// center.SetBorder(TableCellBorderType.Bottom, b);
- /// center.SetBorder(TableCellBorderType.Left, b);
- /// center.SetBorder(TableCellBorderType.Right, b);
- ///
- /// // Save the document.
- /// document.Save();
- ///}
- /// </code>
- /// </example>
- /// <param name="borderType">Table Cell border to set</param>
- /// <param name="border">Border object to set the table cell border</param>
- public void SetBorder(TableCellBorderType borderType, Border border)
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tblBorders (table cell borders) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcBorders = tcPr.Element(XName.Get("tcBorders", DocX.w.NamespaceName));
- if (tcBorders == null)
- {
- tcPr.SetElementValue(XName.Get("tcBorders", DocX.w.NamespaceName), string.Empty);
- tcBorders = tcPr.Element(XName.Get("tcBorders", DocX.w.NamespaceName));
- }
-
- /*
- * Get the 'borderType' (table cell border) element for this Cell,
- * null will be return if no such element exists.
- */
- string tcbordertype;
- switch (borderType)
- {
- case TableCellBorderType.TopLeftToBottomRight:
- tcbordertype = "tl2br";
- break;
- case TableCellBorderType.TopRightToBottomLeft:
- tcbordertype = "tr2bl";
- break;
- default:
- // enum to string
- tcbordertype = borderType.ToString();
- // only lower the first char of string (because of insideH and insideV)
- tcbordertype = tcbordertype.Substring(0, 1).ToLower() + tcbordertype.Substring(1);
- break;
- }
-
- XElement tcBorderType = tcBorders.Element(XName.Get(borderType.ToString(), DocX.w.NamespaceName));
- if (tcBorderType == null)
- {
- tcBorders.SetElementValue(XName.Get(tcbordertype, DocX.w.NamespaceName), string.Empty);
- tcBorderType = tcBorders.Element(XName.Get(tcbordertype, DocX.w.NamespaceName));
- }
-
- // get string value of border style
- string borderstyle = border.Tcbs.ToString().Substring(5);
- borderstyle = borderstyle.Substring(0, 1).ToLower() + borderstyle.Substring(1);
-
- // The val attribute is used for the border style
- tcBorderType.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), borderstyle);
-
- int size;
- switch (border.Size)
- {
- case BorderSize.one: size = 2; break;
- case BorderSize.two: size = 4; break;
- case BorderSize.three: size = 6; break;
- case BorderSize.four: size = 8; break;
- case BorderSize.five: size = 12; break;
- case BorderSize.six: size = 18; break;
- case BorderSize.seven: size = 24; break;
- case BorderSize.eight: size = 36; break;
- case BorderSize.nine: size = 48; break;
- default: size = 2; break;
- }
-
- // The sz attribute is used for the border size
- tcBorderType.SetAttributeValue(XName.Get("sz", DocX.w.NamespaceName), (size).ToString());
-
- // The space attribute is used for the cell spacing (probably '0')
- tcBorderType.SetAttributeValue(XName.Get("space", DocX.w.NamespaceName), (border.Space).ToString());
-
- // The color attribute is used for the border color
- tcBorderType.SetAttributeValue(XName.Get("color", DocX.w.NamespaceName), border.Color.ToHex());
- }
-
-
- /// <summary>
- /// Get a table cell border
- /// Added by lckuiper @ 20101117
- /// </summary>
- /// <param name="borderType">The table cell border to get</param>
- public Border GetBorder(TableCellBorderType borderType)
- {
- // instance with default border values
- Border b = new Border();
-
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- // uses default border style
- }
-
- /*
- * Get the tcBorders (table cell borders) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcBorders = tcPr.Element(XName.Get("tcBorders", DocX.w.NamespaceName));
- if (tcBorders == null)
- {
- // uses default border style
- }
-
- /*
- * Get the 'borderType' (cell border) element for this Cell,
- * null will be return if no such element exists.
- */
- string tcbordertype;
- tcbordertype = borderType.ToString();
-
- switch (tcbordertype)
- {
- case "TopLeftToBottomRight":
- tcbordertype = "tl2br";
- break;
- case "TopRightToBottomLeft":
- tcbordertype = "tr2bl";
- break;
- default:
- // only lower the first char of string (because of insideH and insideV)
- tcbordertype = tcbordertype.Substring(0, 1).ToLower() + tcbordertype.Substring(1);
- break;
- }
-
- XElement tcBorderType = tcBorders.Element(XName.Get(tcbordertype, DocX.w.NamespaceName));
- if (tcBorderType == null)
- {
- // uses default border style
- }
-
- // The val attribute is used for the border style
- XAttribute val = tcBorderType.Attribute(XName.Get("val", DocX.w.NamespaceName));
- // If val is null, this cell contains no border information.
- if (val == null)
- {
- // uses default border style
- }
- else
- {
- try
- {
- string bordertype = "Tcbs_" + val.Value;
- b.Tcbs = (BorderStyle)Enum.Parse(typeof(BorderStyle), bordertype);
- }
-
- catch
- {
- val.Remove();
- // uses default border style
- }
- }
-
- // The sz attribute is used for the border size
- XAttribute sz = tcBorderType.Attribute(XName.Get("sz", DocX.w.NamespaceName));
- // If sz is null, this border contains no size information.
- if (sz == null)
- {
- // uses default border style
- }
- else
- {
- // If sz is not an int, something is wrong with this attributes value, so remove it
- int numerical_size;
- if (!int.TryParse(sz.Value, out numerical_size))
- sz.Remove();
- else
- {
- switch (numerical_size)
- {
- case 2: b.Size = BorderSize.one; break;
- case 4: b.Size = BorderSize.two; break;
- case 6: b.Size = BorderSize.three; break;
- case 8: b.Size = BorderSize.four; break;
- case 12: b.Size = BorderSize.five; break;
- case 18: b.Size = BorderSize.six; break;
- case 24: b.Size = BorderSize.seven; break;
- case 36: b.Size = BorderSize.eight; break;
- case 48: b.Size = BorderSize.nine; break;
- default: b.Size = BorderSize.one; break;
- }
- }
- }
-
- // The space attribute is used for the border spacing (probably '0')
- XAttribute space = tcBorderType.Attribute(XName.Get("space", DocX.w.NamespaceName));
- // If space is null, this border contains no space information.
- if (space == null)
- {
- // uses default border style
- }
- else
- {
- // If space is not an int, something is wrong with this attributes value, so remove it
- int borderspace;
- if (!int.TryParse(space.Value, out borderspace))
- {
- space.Remove();
- // uses default border style
- }
- else
- {
- b.Space = borderspace;
- }
- }
-
- // The color attribute is used for the border color
- XAttribute color = tcBorderType.Attribute(XName.Get("color", DocX.w.NamespaceName));
- if (color == null)
- {
- // uses default border style
- }
- else
- {
- // If color is not a Color, something is wrong with this attributes value, so remove it
- try
- {
- b.Color = ColorTranslator.FromHtml(string.Format("#{0}", color.Value));
- }
- catch
- {
- color.Remove();
- // uses default border style
- }
- }
- return b;
- }
-
- /// <summary>
- /// Gets or Sets the fill color of this Cell.
- /// </summary>
- /// <example>
- /// <code>
- /// // Create a new document.
- /// using (DocX document = DocX.Create("Test.docx"))
- /// {
- /// // Insert a table into this document.
- /// Table t = document.InsertTable(3, 3);
- ///
- /// // Fill the first cell as Blue.
- /// t.Rows[0].Cells[0].FillColor = Color.Blue;
- /// // Fill the middle cell as Red.
- /// t.Rows[1].Cells[1].FillColor = Color.Red;
- /// // Fill the last cell as Green.
- /// t.Rows[2].Cells[2].FillColor = Color.Green;
- ///
- /// // Save the document.
- /// document.Save();
- /// }
- /// </code>
- /// </example>
- public Color FillColor
- {
- get
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- return Color.Empty;
- else
- {
- XElement shd = tcPr.Element(XName.Get("shd", DocX.w.NamespaceName));
- if (shd == null)
- return Color.Empty;
- else
- {
- XAttribute fill = shd.Attribute(XName.Get("fill", DocX.w.NamespaceName));
- if (fill == null)
- return Color.Empty;
- else
- {
- int argb = Int32.Parse(fill.Value.Replace("#", ""), NumberStyles.HexNumber);
- return Color.FromArgb(argb);
- }
- }
- }
- }
-
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the tcW (table cell width) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement shd = tcPr.Element(XName.Get("shd", DocX.w.NamespaceName));
- if (shd == null)
- {
- tcPr.SetElementValue(XName.Get("shd", DocX.w.NamespaceName), string.Empty);
- shd = tcPr.Element(XName.Get("shd", DocX.w.NamespaceName));
- }
-
- shd.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), "clear");
- shd.SetAttributeValue(XName.Get("color", DocX.w.NamespaceName), "auto");
- shd.SetAttributeValue(XName.Get("fill", DocX.w.NamespaceName), value.ToHex());
- }
- }
-
- public override Table InsertTable(int rowCount, int columnCount)
- {
- Table table = base.InsertTable(rowCount, columnCount);
- table.mainPart = mainPart;
- InsertParagraph(); //Dmitchern, It is necessary to put paragraph in the end of the cell, without it MS-Word will say that the document is corrupted
- //IMPORTANT: It will be better to check all methods that work with adding anything to cells
- return table;
- }
-
- public TextDirection TextDirection
- {
- get
- {
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
-
- // If tcPr is null, this cell contains no width information.
- if (tcPr == null)
- return TextDirection.right;
- XElement textDirection = tcPr.Element(XName.Get("textDirection", DocX.w.NamespaceName));
- if (textDirection == null)
- return TextDirection.right;
- XAttribute val = textDirection.Attribute(XName.Get("val", DocX.w.NamespaceName));
- if (val == null)
- return TextDirection.right;
-
- // If val is not a VerticalAlign enum, something is wrong with this attributes value, so remove it and return VerticalAlignment.Center;
- try
- {
- return (TextDirection)Enum.Parse(typeof(TextDirection), val.Value, true);
- }
-
- catch
- {
- val.Remove();
- return TextDirection.right;
- }
- }
- set
- {
- /*
- * Get the tcPr (table cell properties) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- if (tcPr == null)
- {
- Xml.SetElementValue(XName.Get("tcPr", DocX.w.NamespaceName), string.Empty);
- tcPr = Xml.Element(XName.Get("tcPr", DocX.w.NamespaceName));
- }
-
- /*
- * Get the vAlign (table cell vertical alignment) element for this Cell,
- * null will be return if no such element exists.
- */
- XElement textDirection = tcPr.Element(XName.Get("textDirection", DocX.w.NamespaceName));
- if (textDirection == null)
- {
- tcPr.SetElementValue(XName.Get("textDirection", DocX.w.NamespaceName), string.Empty);
- textDirection = tcPr.Element(XName.Get("textDirection", DocX.w.NamespaceName));
- }
-
- // Set the VerticalAlignment in 'val'
- textDirection.SetAttributeValue(XName.Get("val", DocX.w.NamespaceName), value.ToString());
-
- }
- }
- }
-
-
- public class TableLook
- {
- public bool FirstRow { get; set; }
- public bool LastRow { get; set; }
- public bool FirstColumn { get; set; }
- public bool LastColumn { get; set; }
- public bool NoHorizontalBanding { get; set; }
- public bool NoVerticalBanding { get; set; }
- }
-
- }
|