Gets or sets a value indicating whether to regard half checked nodes as checked.


Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)

Syntax

Visual Basic (Declaration)
<CategoryAttribute("Configuration"), _
 BrowsableAttribute(True), _
 DefaultValueAttribute(False)>

Public Property EnableHalfCheckedAsChecked As Boolean
C#
[CategoryAttribute("Configuration")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(False)]
public bool EnableHalfCheckedAsChecked { get; set; }
C++
[CategoryAttribute(L"Configuration")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(False)]
public property bool EnableHalfCheckedAsChecked sealed  {
    bool get();
    void set(bool value);
}
J#
/** @attribute CategoryAttribute("Configuration") */
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute(False) */
/** property */
public bool get_EnableHalfCheckedAsChecked();

/** property */
public void set_EnableHalfCheckedAsChecked(bool value);
JScript
public function get EnableHalfCheckedAsChecked() : bool

public function set EnableHalfCheckedAsChecked(value : bool);

Property Value

true if [enable half checked as checked]; otherwise, false.

See Also