Intersoft WebCombo Documentation
BoundMode Property
See Also  Send Feedback
ISNet.WebUI.WebCombo Namespace > LayoutSet Class : BoundMode Property






Gets or sets the bound mode of WebCombo. Gets or sets the bound mode of WebCombo.

Syntax

Visual Basic (Declaration) 
<ISNet.Serialization.XmlSerializableAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<NotifyParentPropertyAttribute(True)>
<DefaultValueAttribute()>
<DescriptionAttribute("Gets or sets the bound mode of WebCombo.")>
Public Property BoundMode As BoundMode
Visual Basic (Usage)Copy Code
Dim instance As LayoutSet
Dim value As BoundMode
 
instance.BoundMode = value
 
value = instance.BoundMode
C# 
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
[DescriptionAttribute("Gets or sets the bound mode of WebCombo.")]
public BoundMode BoundMode {get; set;}
Delphi 
public read-write property BoundMode: BoundMode; 
JScript 
ISNet.Serialization.XmlSerializableAttribute()
ISNet.Serialization.BinarySerializableAttribute()
NotifyParentPropertyAttribute()
DefaultValueAttribute()
DescriptionAttribute("Gets or sets the bound mode of WebCombo.")
public function get,set BoundMode : BoundMode
Managed Extensions for C++ 
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
[DescriptionAttribute("Gets or sets the bound mode of WebCombo.")]
public: __property BoundMode get_BoundMode();
public: __property void set_BoundMode( 
   BoundMode value
);
C++/CLI 
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
[DescriptionAttribute("Gets or sets the bound mode of WebCombo.")]
public:
property BoundMode BoundMode {
   BoundMode get();
   void set (    BoundMode value);
}

Remarks

By default, the bound mode of WebCombo is set to AutoDetect, that means it will automatically determine whether the WebCombo is working in DataBound or Unbound mode. The detection is basically based on the DataSource property of the WebCombo. If the DataSource is filled then WebCombo will work in DataBound mode, it will query the InitializeDataSource event. Generally, it is best to leave this setting to the default but in some complex scenarios where DataBound mode can't be determined automatically such as in Requery implementation, you can force the WebCombo to work in DataBound mode by setting the value of this property to ForceBound. By default, the bound mode of WebCombo is set to AutoDetect, which it will automatically determine whether the WebCombo is working in DataBound or Unbound mode. The detection is basically based on the DataSource property of the WebCombo, so if the DataSource is filled then WebCombo will work in DataBound mode, which it will query the InitializeDataSource event. Generally, it is best to leave this setting to the default but in some complex scenarios where DataBound mode can't be determined automatically such as in Requery implementation, you can force the WebCombo to work in DataBound mode by setting the value of this property to ForceBound.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 Intersoft Solutions Corp. All Rights Reserved.