RestrictDragging Property (PivotPanel)
In This Topic
Gets or sets a value that determines whether the panel should restrict drag operations based on field types.
Syntax
'Declaration
Public Property RestrictDragging As System.Nullable(Of Boolean)
'Usage
Dim instance As PivotPanel
Dim value As System.Nullable(Of Boolean)
instance.RestrictDragging = value
value = instance.RestrictDragging
public System.Nullable<bool> RestrictDragging {get; set;}
public read-write property RestrictDragging: System.Nullable;
public function get,set RestrictDragging : System.Nullable
public: __property System.Nullable<bool> get_RestrictDragging();
public: __property void set_RestrictDragging(
System.Nullable<bool> value
);
public:
property System.Nullable<bool> RestrictDragging {
System.Nullable<bool> get();
void set ( System.Nullable<bool> value);
}
See Also