C# 클래스 NArrange.Core.GroupedInserter

Grouped inserter.
상속: IElementInserter
파일 보기 프로젝트 열기: MarcStan/NArrange 1 사용 예제들

공개 메소드들

메소드 설명
GroupedInserter ( GroupBy groupBy ) : System

Creates a new GroupedInserter using the specified grouping configuration.

GroupedInserter ( GroupBy groupBy, IElementInserter innerInserter ) : System

Creates a new GroupedInserter using the specified grouping configuration and sorter.

InsertElement ( ICodeElement parentElement, ICodeElement codeElement ) : void

Inserts the element within the parent.

비공개 메소드들

메소드 설명
GetGroupName ( ElementAttributeType elementFilterType, ICodeElement codeElement ) : string

Gets the name of the group the element falls into.

메소드 상세

GroupedInserter() 공개 메소드

Creates a new GroupedInserter using the specified grouping configuration.
public GroupedInserter ( GroupBy groupBy ) : System
groupBy NArrange.Core.Configuration.GroupBy The group by.
리턴 System

GroupedInserter() 공개 메소드

Creates a new GroupedInserter using the specified grouping configuration and sorter.
public GroupedInserter ( GroupBy groupBy, IElementInserter innerInserter ) : System
groupBy NArrange.Core.Configuration.GroupBy The group by.
innerInserter IElementInserter The inner inserter.
리턴 System

InsertElement() 공개 메소드

Inserts the element within the parent.
public InsertElement ( ICodeElement parentElement, ICodeElement codeElement ) : void
parentElement ICodeElement Parent element to insert into.
codeElement ICodeElement Code element to insert.
리턴 void