TableNormal based on Normal?

D

David Thielen

Hi;

This is in Word 2003 WordML

I have a style defined under
<w:style w:type="table" w:default="on" w:styleId="TableNormal">

And it has no settings for font, fontSize, bold, etc. From palying with the
file it appears that it inherits those values from the Normal style. However,
basedOn is not set in the style.

What is going on here? Does the default table style inherit from the default
paragraph style even if it's not set?

If so, are there any other automatic basedon relationships?

And are the rules the same for DOCX?

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com

Cubicle Wars - http://www.windwardreports.com/film.htm
 
J

Jialiang Ge [MSFT]

Hello Dave,

The rPr element specified within the style element specifies the set of run
properties which shall be applied to the referencing run. For example:
<w:rPr>
<w:dstrike/>
</w:rPr>
the single run peroperty applied is the fact that the paragraph shall be
displayed with double strikethrough via the dstrike element. For details,
see the P734 Section 2.7.8.1 of Office Open XML Part 4- Markup Language
Reference.pdf

Please let me know if you have any other concerns, or need anything else.

Sincerely,
Jialiang Ge ([email protected], remove ¡®online.¡¯)
Microsoft Online Community Support

==================================================
For MSDN subscribers whose posts are left unanswered, please check this
document: http://blogs.msdn.com/msdnts/pages/postingAlias.aspx

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express/Windows Mail, please make sure
you clear the check box ¡°Tools/Options/Read: Get 300 headers at a time¡±
to see your reply promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided ¡°AS IS¡± with no warranties, and confers no
rights.
 
J

Jialiang Ge [MSFT]

Hello Dave,

In table, rPr should be applied in the row level. For instance,
<w:p wsp:rsidR="00A05CA5" wsp:rsidRDefault="00A05CA5">
<w:pPr>
<w:rPr><w:dstrike/></w:rPr>
</w:pPr>
<w:r>
<w:rPr><w:dstrike/></w:rPr><w:t>111</w:t>
</w:r>
</w:p>

The first instance of w:rPr does not work. But the w:rPr within <w:r> (row
level) make the row content doulbe strike.

If you have any other concern or need anything else, please feel free to
let me know.

Sincerely,
Jialiang Ge ([email protected], remove 'online.')
Microsoft Online Community Support

=================================================
When responding to posts, please "Reply to Group" via your newsreader
so that others may learn and benefit from your issue.
=================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top