Search This Blog
Thursday, May 19, 2011
I already finish my memorize HTML basic
<!DOCTYPE html>
<html lang="eg">
<head>
<meta charsct="utf-8">
<title>..........</title>
</head>
<body>
</body>
</html>
and I have to finish my new web site design
Wednesday, May 18, 2011
Tuesday, May 17, 2011
Thursday, May 5, 2011
Wednesday, May 4, 2011
color property:This example changes the color of the text in the first paragraph of the active document to green.
ActiveDocument.Paragraphs(1).Range.Font.Color = wdColorGreen
This example changes the color of the selected text to dark red.Selection.Font.Color = wdColorDarkRed
This example adds a dotted indigo border around each cell in the first table.If ActiveDocument.Tables.Count >= 1 Then
For Each aBorder In ActiveDocument.Tables(1).Borders
aBorder.Color = wdColorIndigo
aBorder.LineStyle = wdLineStyleDashDot
aBorder.LineWidth = wdLineWidth075pt
Next aBorder
End If
Subscribe to:
Posts (Atom)