Range.ItalicBi Property 

Determines if the range is formatted as italic.

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.ItalicBi

Dim sampleValue As Integer
range1.ItalicBi = sampleValue

Syntax

Property ItalicBi() As Integer
int ItalicBi {get; set;}
property Int32 ItalicBi{
    Int32 get();
    Void set(Int32);
}
public int get_ItalicBi();
public void set_ItalicBi(int);
function get ItalicBi() : int;
function set ItalicBi(int);

Remarks

This property returns True if the range is formatted as italic, and False if not.

This property returns True, False or wdUndefined (for a mixture of italic and non-italic text).

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

The ItalicBi property applies to text in right-to-left languages.

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