Article Details
Id:12021
Product:finPOWER Connect
Type:NEW
Version:2.01.01
Opened:30/06/2014
Closed:30/06/2014
Released:31/07/2014
Job: J013549

Page Sets; Buttons can now include separators

Page Set Page Object types that have a Buttons collection can now add separators to break the buttons up into groups.

A new method, .AddSeparator() has been added to the finPageSetHandlerPageObjectButtons.

The following example shows how to add separators using both the .Add() and .AddSeparator() methods:

With gridTest.Buttons
  .Add(isefinPageObjectButtonType.Refresh)
  .Add(isefinPageObjectButtonType.Separator)
  .Add(isefinPageObjectButtonType.Add)
  .AddSeparator()
  .Add(isefinPageObjectButtonType.Search)
End With