HtmlHelperArrayToTable Method |
数组转换为表格
Namespace: AdfAssembly: Adf (in Adf.dll) Version: 4.1.5549.27750
Syntax public static string ArrayToTable(
Array array,
string id,
string width,
int border = 1,
int cellpadding = 0,
int cellspacing = 0
)
Public Shared Function ArrayToTable (
array As Array,
id As String,
width As String,
Optional border As Integer = 1,
Optional cellpadding As Integer = 0,
Optional cellspacing As Integer = 0
) As String
public:
static String^ ArrayToTable(
Array^ array,
String^ id,
String^ width,
int border = 1,
int cellpadding = 0,
int cellspacing = 0
)
static member ArrayToTable :
array : Array *
id : string *
width : string *
?border : int *
?cellpadding : int *
?cellspacing : int
(* Defaults:
let _border = defaultArg border 1
let _cellpadding = defaultArg cellpadding 0
let _cellspacing = defaultArg cellspacing 0
*)
-> string
Parameters
- array
- Type: SystemArray
数组 - id
- Type: SystemString
表格ID - width
- Type: SystemString
表宽 - border (Optional)
- Type: SystemInt32
边框 - cellpadding (Optional)
- Type: SystemInt32
填充 - cellspacing (Optional)
- Type: SystemInt32
表间距
Return Value
Type:
String[Missing <returns> documentation for "M:Adf.HtmlHelper.ArrayToTable(System.Array,System.String,System.String,System.Int32,System.Int32,System.Int32)"]
See Also