Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码
li1 = ddsState.Items.FindByValue("State")
我将 li1 声明为 String 但说我需要
ListItem.
为什么?
显然,ddsState是一种列表,也许是一个下拉列表。该Items集合包括ListItems. 因此,当您找到 之一时Items,其类型为ListItem。
ddsState
Items
ListItems
ListItem
如果您将声明更改为li1to ListItem,您将能够检查其属性,包括其值。
li1