Interface ISendableBuilder
Assembly: WPILibSharp.dll
Syntax
public interface ISendableBuilder
Properties
|
Improve this Doc
View Source
Actuator
Declaration
Property Value
|
Improve this Doc
View Source
SafeState
Declaration
Action SafeState { set; }
Property Value
|
Improve this Doc
View Source
SmartDashboardType
Declaration
string SmartDashboardType { set; }
Property Value
|
Improve this Doc
View Source
UpdateTable
Declaration
Action UpdateTable { set; }
Property Value
Methods
|
Improve this Doc
View Source
AddBooleanArrayProperty(String, Func<Boolean[]>, Action<Boolean[]>)
Declaration
void AddBooleanArrayProperty(string key, Func<bool[]> getter, Action<bool[]> setter)
Parameters
|
Improve this Doc
View Source
AddBooleanProperty(String, Func<Boolean>, Action<Boolean>)
Declaration
void AddBooleanProperty(string key, Func<bool> getter, Action<bool> setter)
Parameters
|
Improve this Doc
View Source
AddDoubleArrayProperty(String, Func<Double[]>, Action<Double[]>)
Declaration
void AddDoubleArrayProperty(string key, Func<double[]> getter, Action<double[]> setter)
Parameters
|
Improve this Doc
View Source
AddDoubleProperty(String, Func<Double>, Action<Double>)
Declaration
void AddDoubleProperty(string key, Func<double> getter, Action<double> setter)
Parameters
|
Improve this Doc
View Source
AddRawProperty(String, Func<Byte[]>, Action<Byte[]>)
Declaration
void AddRawProperty(string key, Func<byte[]> getter, Action<byte[]> setter)
Parameters
|
Improve this Doc
View Source
AddStringArrayProperty(String, Func<String[]>, Action<String[]>)
Declaration
void AddStringArrayProperty(string key, Func<string[]> getter, Action<string[]> setter)
Parameters
|
Improve this Doc
View Source
AddStringProperty(String, Func<String>, Action<String>)
Declaration
void AddStringProperty(string key, Func<string> getter, Action<string> setter)
Parameters
|
Improve this Doc
View Source
AddValueProperty(String, Func<NetworkTableValue>, Action<NetworkTableValue>)
Declaration
void AddValueProperty(string key, Func<NetworkTableValue> getter, Action<NetworkTableValue> setter)
Parameters
|
Improve this Doc
View Source
GetEntry(String)
Declaration
NetworkTableEntry GetEntry(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns