Show / Hide Table of Contents

Class SendableBuilderImpl

Inheritance
Object
SendableBuilderImpl
Implements
ISendableBuilder
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: WPILib.SmartDashboard
Assembly: WPILibSharp.dll
Syntax
public class SendableBuilderImpl : ISendableBuilder

Properties

| Improve this Doc View Source

Actuator

Declaration
public bool Actuator { set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

SafeState

Declaration
public Action SafeState { set; }
Property Value
Type Description
Action
| Improve this Doc View Source

SmartDashboardType

Declaration
public string SmartDashboardType { set; }
Property Value
Type Description
String
| Improve this Doc View Source

Table

Declaration
public NetworkTable Table { get; set; }
Property Value
Type Description
NetworkTable
| Improve this Doc View Source

UpdateTable

Declaration
public Action UpdateTable { set; }
Property Value
Type Description
Action

Methods

| Improve this Doc View Source

AddBooleanArrayProperty(String, Func<Boolean[]>, Action<Boolean[]>)

Declaration
public void AddBooleanArrayProperty(string key, Func<bool[]> getter, Action<bool[]> setter)
Parameters
Type Name Description
String key
Func<Boolean[]> getter
Action<Boolean[]> setter
| Improve this Doc View Source

AddBooleanProperty(String, Func<Boolean>, Action<Boolean>)

Declaration
public void AddBooleanProperty(string key, Func<bool> getter, Action<bool> setter)
Parameters
Type Name Description
String key
Func<Boolean> getter
Action<Boolean> setter
| Improve this Doc View Source

AddDoubleArrayProperty(String, Func<Double[]>, Action<Double[]>)

Declaration
public void AddDoubleArrayProperty(string key, Func<double[]> getter, Action<double[]> setter)
Parameters
Type Name Description
String key
Func<Double[]> getter
Action<Double[]> setter
| Improve this Doc View Source

AddDoubleProperty(String, Func<Double>, Action<Double>)

Declaration
public void AddDoubleProperty(string key, Func<double> getter, Action<double> setter)
Parameters
Type Name Description
String key
Func<Double> getter
Action<Double> setter
| Improve this Doc View Source

AddRawProperty(String, Func<Byte[]>, Action<Byte[]>)

Declaration
public void AddRawProperty(string key, Func<byte[]> getter, Action<byte[]> setter)
Parameters
Type Name Description
String key
Func<Byte[]> getter
Action<Byte[]> setter
| Improve this Doc View Source

AddStringArrayProperty(String, Func<String[]>, Action<String[]>)

Declaration
public void AddStringArrayProperty(string key, Func<string[]> getter, Action<string[]> setter)
Parameters
Type Name Description
String key
Func<String[]> getter
Action<String[]> setter
| Improve this Doc View Source

AddStringProperty(String, Func<String>, Action<String>)

Declaration
public void AddStringProperty(string key, Func<string> getter, Action<string> setter)
Parameters
Type Name Description
String key
Func<String> getter
Action<String> setter
| Improve this Doc View Source

AddValueProperty(String, Func<NetworkTableValue>, Action<NetworkTableValue>)

Declaration
public void AddValueProperty(string key, Func<NetworkTableValue> getter, Action<NetworkTableValue> setter)
Parameters
Type Name Description
String key
Func<NetworkTableValue> getter
Action<NetworkTableValue> setter
| Improve this Doc View Source

ClearProperties()

Declaration
public void ClearProperties()
| Improve this Doc View Source

GetEntry(String)

Declaration
public NetworkTableEntry GetEntry(string key)
Parameters
Type Name Description
String key
Returns
Type Description
NetworkTableEntry
| Improve this Doc View Source

StartListeners()

Declaration
public void StartListeners()
| Improve this Doc View Source

StopListeners()

Declaration
public void StopListeners()
| Improve this Doc View Source

TriggerUpdateTable()

Declaration
public void TriggerUpdateTable()

Implements

ISendableBuilder
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 RobotDotNet