Show / Hide Table of Contents

Interface ISendableBuilder

Namespace: WPILib.SmartDashboard
Assembly: WPILibSharp.dll
Syntax
public interface ISendableBuilder

Properties

| Improve this Doc View Source

Actuator

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

SafeState

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

SmartDashboardType

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

UpdateTable

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

Methods

| Improve this Doc View Source

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

Declaration
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
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
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
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
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
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
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
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

GetEntry(String)

Declaration
NetworkTableEntry GetEntry(string key)
Parameters
Type Name Description
String key
Returns
Type Description
NetworkTableEntry
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 RobotDotNet