Table of Contents

Interface IListView

A PowerBuilder list-view object.

Inherited Members
IUiObjectWithLayoutInfo.IsRightAligned
IUiObjectWithLayoutInfo.IsRightToLeftLayout
IUiObjectWithLayoutInfo.IsRightToLeftReading
IUiObjectBase.ObjectName
IUiObjectBase.AttachedText
IUiObjectBase.Text
IUiObjectBase.WindowExtendedStyle
IUiObjectBase.WindowStyle
IUiObjectBase.WindowClassRegExp
IUiObjectBase.WindowId
IUiObjectBase.MouseMove(Location)
IUiObjectBase.IsFocused
IUiObjectBase.NativeClass
IUiObjectBase.WindowTitleRegExp
IUiObjectBase.Handle
IClickable.Click(MouseButton)
IClickable.Click(ClickArgs)
IDoubleClickable.DoubleClick(MouseButton)
IDoubleClickable.DoubleClick(ClickArgs)
ILocationInfoProvider.Location
ILocationInfoProvider.AbsoluteLocation
ILocationInfoProvider.Size
ISupportSendKeys.SendKeys(string, KeyModifier)
ISupportSendKeys.SendKeys(string)
ISupportDragAndDrop.DragAndDropOn(ISupportDragAndDrop)
ISupportDragAndDrop.DragAndDropOn(ISupportDragAndDrop, DragAndDropArgs)
IEnabledProvider.IsEnabled
IVisibleProvider.IsVisible
ITestObject.GetDescription()
ITestObject.SetDescription(IDescription)
ITestObject.FindChildren<TChild>(IDescription)
ITestObject.Exists()
ITestObject.Exists(uint)
ITestObject.GetSnapshot()
ITestObject.Highlight()
ITestObject.HighlightMatches<TChild>(IDescription)
ITestObject.GetTextLocations(string)
ITestObject.GetTextLocations(string, Rectangle)
ITestObject.GetVisibleText()
ITestObject.GetVisibleText(Rectangle)
ITestObject.VerifyImageExists(Image, byte)
ITestObject.VerifyImageMatch(Image, byte, byte)
ITestObject.VerifyImageMatch(Image, ImageMaskArea, byte, byte)
ITestObject.CallFTMethod(string, params object[])
ITestObject.CallFTMethod<TResult>(string, params object[])
ITestObject.Parent
ITestObject.DisplayName
ITestObjectDescriber.Describe<TChild>(IDescription)
IListBase<IListViewItem>.ActivateItem(IListViewItem, MouseButton)
IListBase<IListViewItem>.ActivateItem(string, MouseButton)
IListBase<IListViewItem>.ActivateItem(int, MouseButton)
IListBase<IListViewItem>.Deselect(params IListViewItem[])
IListBase<IListViewItem>.Deselect(params string[])
IListBase<IListViewItem>.Deselect(params int[])
IListBase<IListViewItem>.Select(params IListViewItem[])
IListBase<IListViewItem>.Select(params string[])
IListBase<IListViewItem>.Select(params int[])
IListBase<IListViewItem>.SelectRange(int, int)
IListBase<IListViewItem>.SelectRange(int)
IListBase<IListViewItem>.SelectRange(string)
IListBase<IListViewItem>.ExtendSelect(params IListViewItem[])
IListBase<IListViewItem>.ExtendSelect(params int[])
IListBase<IListViewItem>.ExtendSelect(params string[])
IListBase<IListViewItem>.GetItem(string)
IListBase<IListViewItem>.Items
IListBase<IListViewItem>.SelectedItems
Namespace: HP.LFT.SDK.PowerBuilder
Assembly: HP.LFT.SDK.dll
Syntax
public interface IListView : IUiObjectWithLayoutInfo, IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ITestObject, ITestObjectDescriber, IListBase<IListViewItem>

Properties

CheckedItems

A list of all checked items as a read-only collection object.

Declaration
ReadOnlyCollection<IListViewItem> CheckedItems { get; }
Property Value
Type Description
ReadOnlyCollection<IListViewItem>

VisibleColumnsCount

Returns the number of visible columns in the list-view object.

Declaration
int VisibleColumnsCount { get; }
Property Value
Type Description
int

Methods

GetColumnHeader(int)

Returns the text header of the specified (report-style) list-view column.

Declaration
string GetColumnHeader(int columnIndex)
Parameters
Type Name Description
int columnIndex

The 0-based index of the list column.

Returns
Type Description
string

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)
TestObjectExtensions.WaitUntilExists<T>(T)
TestObjectExtensions.WaitUntilExists<T>(T, int)
TestObjectExtensions.WaitUntilVisible<T>(T)
TestObjectExtensions.WaitUntilVisible<T>(T, int)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>, int)