'Declaration Public Sub SetWidthsPercentage( _ ByVal widthsPercentage() As Single, _ Optional ByVal totalWidth As Nullable(Of Single) _ )
'Usage Dim instance As Table Dim widthsPercentage() As Single Dim totalWidth As Nullable(Of Single) instance.SetWidthsPercentage(widthsPercentage, totalWidth)
public void SetWidthsPercentage( float[] widthsPercentage, Nullable<float> totalWidth )
Parameters
- widthsPercentage
- The array of width percentages to use (in points).
- totalWidth
- The total width of the columns. If null, the maximum width available is used.