Method Outline
Outline(int, int, int)
When implemented by a class, creates an outlining section based on specific scope at the specific level of outline nesting.
IOutlineRange Outline(int first, int last, int level)
Parameters
firstintSpecifies first line of section to outline.
lastintSpecifies last line of section to outline.
levelintSpecifies level of outline nesting for this section.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(int, int)
When implemented by a class, creates an outlining section based on specific scope within current outlined section.
IOutlineRange Outline(int first, int last)
Parameters
firstintSpecifies first line of section to outline.
lastintSpecifies last line of section to outline.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(Point, Point, int)
When implemented by a class, creates an outlining section based on specific scope at the specific level of outline nesting.
IOutlineRange Outline(Point startPoint, Point endPoint, int level)
Parameters
startPointPointSpecifies begin of section to outline.
endPointPointSpecifies end of section to outline.
levelintSpecifies level of outline nesting for this section.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(Point, Point)
When implemented by a class, creates an outlining section based on specific scope within current outlined section.
IOutlineRange Outline(Point startPoint, Point endPoint)
Parameters
startPointPointSpecifies begin of section to outline.
endPointPointSpecifies end of section to outline.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(int, int, int, string)
When implemented by a class, creates an outlining section based on specific scope at specific level of outline nesting and with specific text substituting collapsed text.
IOutlineRange Outline(int first, int last, int level, string outlineText)
Parameters
firstintSpecifies first line of section to outline.
lastintSpecifies last line of section to outline.
levelintSpecifies level of outline nesting for this section.
outlineTextstringSpecifies text substituting collapsed text.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(int, int, string)
When implemented by a class, creates an outlining section based on specific scope within current outlined section and with specific text substituting collapsed text.
IOutlineRange Outline(int first, int last, string outlineText)
Parameters
firstintSpecifies first line of section to outline.
lastintSpecifies last line of section to outline.
outlineTextstringSpecifies first line of section to outline.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(Point, Point, int, string)
When implemented by a class, creates an outlining section based on specific scope at specific level of outline nesting and with specific text substituting collapsed text.
IOutlineRange Outline(Point startPoint, Point endPoint, int level, string outlineText)
Parameters
startPointPointSpecifies begin of section to outline.
endPointPointSpecifies end of section to outline.
levelintSpecifies level of outline nesting for this section.
outlineTextstringSpecifies text to substitute collapsed text.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.
Outline(Point, Point, string)
When implemented by a class, creates an outlining section based on specific scope within current outlined section and with specific text substituting collapsed text.
IOutlineRange Outline(Point startPoint, Point endPoint, string outlineText)
Parameters
startPointPointSpecifies begin of section to outline.
endPointPointSpecifies end of section to outline.
outlineTextstringSpecifies text to substitute collapsed text.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section.