Method Outline
Outline(int, int, int)
This method 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
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, IfAllowOutliningproperty is true; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(int, int)
This method creates an outlining section based on specific scope.
public virtual 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, ifAllowOutliningproperty is true ; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(Point, Point, int)
This method creates an outlining section based on specific scope with the specific level of outline nesting.
public virtual 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, ifAllowOutliningproperty is true ; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(Point, Point)
This method creates an outlining section based on specific scope.
public virtual 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, ifAllowOutliningproperty is true ; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(int, int, int, string)
This method creates an outlining section based on specific scope at specific level of outline nesting and with specific text substituting collapsed section.
public virtual 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 displayed when outline section is collapsed.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section, ifAllowOutliningproperty is true; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(int, int, string)
This method creates an outlining section based on specific scope within current outlined section and with specific text substituting collapsed section.
public virtual IOutlineRange Outline(int first, int last, string outlineText)
Parameters
firstintSpecifies first line of section to outline.
lastintSpecifies last line of section to outline.
outlineTextstringSpecifies text displayed when outline section is collapsed.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section, ifAllowOutliningproperty is true; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(Point, Point, int, string)
This method creates an outlining section based on specific scope with specific level of outline nesting and specific text substituting collapsed section.
public virtual 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 displayed when outline section is collapsed.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section, ifAllowOutliningproperty is true; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.
Outline(Point, Point, string)
This method creates an outlining section based on specific scope within current outlined section and with specific text substituting collapsed section.
public virtual IOutlineRange Outline(Point startPoint, Point endPoint, string outlineText)
Parameters
startPointPointSpecifies begin of section to outline.
endPointPointSpecifies end of section to outline.
outlineTextstringSpecifies text displayed when outlined section is collapsed.
Returns
- IOutlineRange
IOutlineRangeobject that represents outline section, ifAllowOutliningproperty is true; otherwise return null.
Remarks
This method is applicable only when property AllowOutlining is true.