Range.Bold Property 

Determines if the font or range is formatted as bold.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim range1 As Range

Dim returnValue As Integer
returnValue = range1.Bold

Dim sampleValue As Integer
range1.Bold = sampleValue

Syntax

Property Bold() As Integer
int Bold {get; set;}
property Int32 Bold{
    Int32 get();
    Void set(Int32);
}
public int get_Bold();
public void set_Bold(int);
function get Bold() : int;
function set Bold(int);

Remarks

This property returns True, False or wdUndefined (a mixture of True and False).

The values this property can be set to are True, False, and wdToggle.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Range Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

Range Members