Method Outline
Outline(int, int, int)
Creates an outlining section based on specific scope at the specific level of outline nesting.
public virtual IOutlineRange Outline(int first, int last, int level)
Parameters
first
intSpecifies first line of section to outline.
last
intSpecifies last line of section to outline.
level
intSpecifies level of outline nesting for this section.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(int, int)
Creates an outlining section based on specific scope within current outlined section.
public virtual IOutlineRange Outline(int first, int last)
Parameters
first
intSpecifies first line of section to outline.
last
intSpecifies last line of section to outline.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(Point, Point, int)
Creates an outlining section based on specific scope at the specific level of outline nesting.
public virtual IOutlineRange Outline(Point startPoint, Point endPoint, int level)
Parameters
startPoint
PointSpecifies begin of section to outline.
endPoint
PointSpecifies end of section to outline.
level
intSpecifies level of outline nesting for this section.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(Point, Point)
Creates an outlining section based on specific scope within current outlined section.
public virtual IOutlineRange Outline(Point startPoint, Point endPoint)
Parameters
startPoint
PointSpecifies begin of section to outline.
endPoint
PointSpecifies end of section to outline.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(int, int, int, string)
Creates an outlining section based on specific scope at specific level of outline nesting and with specific text substituting collapsed text.
public virtual IOutlineRange Outline(int first, int last, int level, string outlineText)
Parameters
first
intSpecifies first line of section to outline.
last
intSpecifies last line of section to outline.
level
intSpecifies level of outline nesting for this section.
outlineText
stringSpecifies text substituting collapsed text.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(int, int, string)
Creates an outlining section based on specific scope within current outlined section and with specific text substituting collapsed text.
public virtual IOutlineRange Outline(int first, int last, string outlineText)
Parameters
first
intSpecifies first line of section to outline.
last
intSpecifies last line of section to outline.
outlineText
stringSpecifies first line of section to outline.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(Point, Point, int, string)
Creates an outlining section based on specific scope at specific level of outline nesting and with specific text substituting collapsed text.
public virtual IOutlineRange Outline(Point startPoint, Point endPoint, int level, string outlineText)
Parameters
startPoint
PointSpecifies begin of section to outline.
endPoint
PointSpecifies end of section to outline.
level
intSpecifies level of outline nesting for this section.
outlineText
stringSpecifies text to substitute collapsed text.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.
Outline(Point, Point, string)
Creates an outlining section based on specific scope within current outlined section and with specific text substituting collapsed text.
public virtual IOutlineRange Outline(Point startPoint, Point endPoint, string outlineText)
Parameters
startPoint
PointSpecifies begin of section to outline.
endPoint
PointSpecifies end of section to outline.
outlineText
stringSpecifies text to substitute collapsed text.
Returns
- IOutlineRange
IOutlineRange
object that represents outline section.