Range.Italic 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.Italic

Dim sampleValue As Integer
range1.Italic = sampleValue

Syntax

Property Italic() As Integer
int Italic {get; set;}
property Int32 Italic{
    Int32 get();
    Void set(Int32);
}
public int get_Italic();
public void set_Italic(int);
function get Italic() : int;
function set Italic(int);

Remarks

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

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

The values this property can be set to are True, False, or 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