IEntryBucket2.Split Method

Definition

Split the bucket into an equivalent sequence of buckets.

public:
 System::Collections::Generic::IEnumerable<Microsoft::VisualStudio::Shell::TableControl::IEntryBucket ^> ^ Split();
public System.Collections.Generic.IEnumerable<Microsoft.VisualStudio.Shell.TableControl.IEntryBucket> Split ();
abstract member Split : unit -> seq<Microsoft.VisualStudio.Shell.TableControl.IEntryBucket>
Public Function Split () As IEnumerable(Of IEntryBucket)

Returns

null if the buckets can not be split. Otherwise an enumeration of the equivalent buckets.

Remarks

For example, a bucket that represents the file path "D:\test\project1\project1\resources" might be split into buckets for "D:", "test", "project1", "project1", "resources".

The buckets will be stiched back together (using Merge(IEntryBucket) as long as the bucket has only a single child.

Applies to