NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UserControlDesigner.IsPropertyBound

Gets whether a particular property (identified by its name) is data bound.

[Visual Basic]
Public Function IsPropertyBound( _
   ByVal propName As String _
) As Boolean
[C#]
public bool IsPropertyBound(
   string propName
);
[C++]
public: bool IsPropertyBound(
   String* propName
);
[JScript]
public function IsPropertyBound(
   propName : String
) : Boolean;

Parameters

propName
The property to check binding for.

Return Value

true if the property is data bound, and false otherwise.

See Also

UserControlDesigner Class | UserControlDesigner Members | System.Web.UI.Design Namespace