Click or drag to resize

WriteToServerT Class

Bind a server item to a value.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    System.ComponentModelPropertyChangedEventArgs
      Demo3D.VisualsBindableItem
        Demo3D.VisualsBindableItemT
          Demo3D.VisualsWriteToServerT

Namespace:  Demo3D.Visuals
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public class WriteToServer<T> : BindableItem<T>

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Demo3D.Visuals.WriteToServer`1"]

The WriteToServerT type exposes the following members.

Constructors
  NameDescription
Public methodWriteToServerT
Initializes a new instance of the WriteToServerT class
Top
Properties
  NameDescription
Public propertyAllowedAccess
Returns the allowed access for external IO on this item.
(Inherited from BindableItem.)
Public propertyBindingInterface
Gets/sets if the bindable item has a declared binding interface. Normally, aspects manage the BAPI themselves.
(Inherited from BindableItem.)
Public propertyBindingName
The name of the bindable item. Usually the name of the custom property, but for other specialized items (such as Conveyor.IsMotorOn) returns the binding name ("IsMotorOn").
(Inherited from BindableItem.)
Public propertyDefaultAccess
Returns the default access for external IO on this item.
(Inherited from BindableItem.)
Public propertyExpression
Returns the full expression of the item. Includes the full name of the associated visual and the binding name.
(Inherited from BindableItem.)
Public propertyHasBindingInterface
Returns true if the bindable item has a declared binding interface.
(Inherited from BindableItem.)
Public propertyIOControl
Gets or sets a property to control how individual updates to this item are presented externally.
(Inherited from BindableItem.)
Public propertyIsBindingInterface
Declares a bindable item as part of the binding interface for a component. Yes: Bindable item is definitely part of the API. Maybe: Bindable item may be part of the API. No: Bindable item is definitely not part of the API.
(Inherited from BindableItem.)
Public propertyIsBound
Returns true if this item is bound to a server item in the TagBrowser.
(Inherited from BindableItem.)
Public propertyOldValue
The previous value. (Only valid while raising ValueChanged.)
(Inherited from BindableItem.)
Public propertyType
The declared .Net type of the item.
(Inherited from BindableItem.)
Public propertyValue
Get or set the the BindableItem.Value in a typesafe way.
(Inherited from BindableItemT.)
Public propertyVisual
Gets or sets the visual that this bindable item is attached to.
(Inherited from BindableItem.)
Top
Methods
Events
  NameDescription
Public eventExpressionChanged
Occurs when the Expression changes. For example if the associated visual's name changes.
(Inherited from BindableItem.)
Public eventValueChanged
Occurs when the value of the item changes.
(Inherited from BindableItem.)
Top
See Also